Skip to content

Commit

Permalink
Merge pull request #30097 from perrotta/fixHiGlobalEventContents
Browse files Browse the repository at this point in the history
Fix for the recently updated HI event content
  • Loading branch information
cmsbuild committed Jun 6, 2020
2 parents 697bf6a + 597c430 commit 3060253
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
31 changes: 19 additions & 12 deletions Configuration/EventContent/python/EventContentHeavyIons_cff.py
Expand Up @@ -14,12 +14,11 @@


#RAW
RAWEventContent = cms.PSet(
outputCommands = cms.untracked.vstring(
RecoHIRAWOutput=cms.untracked.vstring(
'keep FEDRawDataCollection_rawDataRepacker_*_*',
'keep FEDRawDataCollection_hybridRawDataRepacker_*_*',
'keep FEDRawDataCollection_virginRawDataRepacker_*_*')
)
RAWEventContent.outputCommands.extend(RecoHIRAWOutput)

#RECO
RECOEventContent.outputCommands.extend(RecoHIRECO.outputCommands)
Expand All @@ -28,11 +27,12 @@
AODEventContent.outputCommands.extend(RecoHIAOD.outputCommands)

#RAWSIM
RAWSIMEventContent.outputCommands.extend(RAWEventContent.outputCommands)
RAWSIMEventContent.outputCommands.extend(RecoHIRAWOutput)
RAWSIMEventContent.outputCommands.extend(HiMixRAW.outputCommands)

#RAWSIMHLT
RAWSIMHLTEventContent.outputCommands.extend(RAWSIMEventContent.outputCommands)
RAWSIMHLTEventContent.outputCommands.extend(RecoHIRAWOutput)
RAWSIMHLTEventContent.outputCommands.extend(HiMixRAW.outputCommands)

#RECOSIM
RECOSIMEventContent.outputCommands.extend(RecoHIRECO.outputCommands)
Expand All @@ -44,28 +44,35 @@

#FEVT (RAW + RECO)
FEVTEventContent.outputCommands.extend(RecoHIFEVT.outputCommands)
FEVTEventContent.outputCommands.extend(RAWEventContent.outputCommands)
FEVTEventContent.outputCommands.extend(RecoHIRAWOutput)

#FEVTHLTALL (FEVT + all HLT)
FEVTHLTALLEventContent.outputCommands.extend(FEVTEventContent.outputCommands)
FEVTHLTALLEventContent.outputCommands.extend(RecoHIFEVT.outputCommands)
FEVTHLTALLEventContent.outputCommands.extend(RecoHIRAWOutput)

#FEVTSIM (RAWSIM + RECOSIM)
FEVTSIMEventContent.outputCommands.extend(FEVTEventContent.outputCommands)
FEVTSIMEventContent.outputCommands.extend(RecoHIFEVT.outputCommands)
FEVTSIMEventContent.outputCommands.extend(RecoHIRAWOutput)
FEVTSIMEventContent.outputCommands.extend(HiMixRAW.outputCommands)

#RAW DEBUG(e.g. mergedtruth from trackingParticles)
RAWDEBUGEventContent.outputCommands.extend(RAWEventContent.outputCommands)
RAWDEBUGEventContent.outputCommands.extend(RecoHIRAWOutput)
RAWDEBUGEventContent.outputCommands.extend(HiMixRAW.outputCommands)

#RAW HLT DEBUG
RAWDEBUGHLTEventContent.outputCommands.extend(RAWDEBUGEventContent.outputCommands)
RAWDEBUGHLTEventContent.outputCommands.extend(RecoHIRAWOutput)
RAWDEBUGHLTEventContent.outputCommands.extend(HiMixRAW.outputCommands)

#RECO DEBUG
RECODEBUGEventContent.outputCommands.extend(RecoHIRECO.outputCommands)
RECODEBUGEventContent.outputCommands.extend(HiMixRAW.outputCommands)

#FEVT DEBUG
FEVTDEBUGEventContent.outputCommands.extend(FEVTSIMEventContent.outputCommands)
FEVTDEBUGEventContent.outputCommands.extend(RecoHIFEVT.outputCommands)
FEVTDEBUGEventContent.outputCommands.extend(RecoHIRAWOutput)
FEVTDEBUGEventContent.outputCommands.extend(HiMixRAW.outputCommands)

#FEVT HLT DEBUG
FEVTDEBUGHLTEventContent.outputCommands.extend(FEVTSIMEventContent.outputCommands)
FEVTDEBUGHLTEventContent.outputCommands.extend(RecoHIFEVT.outputCommands)
FEVTDEBUGHLTEventContent.outputCommands.extend(RecoHIRAWOutput)
FEVTDEBUGHLTEventContent.outputCommands.extend(HiMixRAW.outputCommands)
1 change: 1 addition & 0 deletions RecoHI/Configuration/python/RecoHI_EventContent_cff.py
Expand Up @@ -45,3 +45,4 @@
RecoHIFEVT.outputCommands.extend(RecoHiEvtPlaneFEVT.outputCommands)
RecoHIFEVT.outputCommands.extend(RecoHiCentralityFEVT.outputCommands)
RecoHIFEVT.outputCommands.extend(RecoHiMuonFEVT.outputCommands)

0 comments on commit 3060253

Please sign in to comment.