Skip to content
Snippets Groups Projects
Commit 565d880b authored by Rupert Tombs's avatar Rupert Tombs
Browse files

Add ItemList argument for our OutputStreamCfg object. Remove redundant comment.

parent 65b6536d
No related branches found
No related tags found
9 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!28528Revert 63f845ae,!27054Atr20369 210,!26342Monopole: Handle fractionally charged particles,!20482Add ItemList to output stream in new BCM Digitization test
......@@ -25,14 +25,15 @@ ConfigFlags.Input.Files = [inputDir + fileDir]
ConfigFlags.Output.HITFileName = "myHITS.pool.root"
ConfigFlags.lock()
# Construct ComponentAccumulator
cfg = MainServicesSerialCfg() #This syntax for storegate
cfg = MainServicesSerialCfg()
cfg.merge(PoolReadCfg(ConfigFlags))
# Use BCM tools
BCMflags = createBCMCfgFlags()
acc = BCM_DigitizationCfg(BCMflags)
cfg.merge(acc)
# Add configuration to write HITS pool file
outConfig = OutputStreamCfg(ConfigFlags, "HITS")
outConfig = OutputStreamCfg(ConfigFlags, "HITS",
ItemList=["InDetSimDataCollection#*", "BCM_RDO_Container#*"])
cfg.merge(outConfig)
cfg.getService("StoreGateSvc").Dump=True
cfg.printConfig(withDetails=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment