/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configuration/EventContent/python/EventContentHeavyIons_cff.py
78 строк
3 KB
Andrea
remove the RAW event content from the RECO event content config
03 июн 2020, 19:30
03 июн 2020, 19:30
597c430
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms # Heavy Ions Event Content including: # 1) common event content from standard file (EventContent_cff) # 2) heavy-ion specific content from other subsystems (e.g. HiMixing) # 3) heavy-ion specific reconstruction content from RecoHI # Common Subsystems from Configuration.EventContent.EventContent_cff import * # Heavy-Ion Specific Event Content from SimGeneral.Configuration.SimGeneral_HiMixing_EventContent_cff import * # heavy ion signal mixing from RecoHI.Configuration.RecoHI_EventContent_cff import * # heavy ion reconstruction #RAW RecoHIRAWOutput=cms.untracked.vstring( 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_hybridRawDataRepacker_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*') RAWEventContent.outputCommands.extend(RecoHIRAWOutput) #RECO RECOEventContent.outputCommands.extend(RecoHIRECO.outputCommands) #AOD AODEventContent.outputCommands.extend(RecoHIAOD.outputCommands) #RAWSIM RAWSIMEventContent.outputCommands.extend(RecoHIRAWOutput) RAWSIMEventContent.outputCommands.extend(HiMixRAW.outputCommands) #RAWSIMHLT RAWSIMHLTEventContent.outputCommands.extend(RecoHIRAWOutput) RAWSIMHLTEventContent.outputCommands.extend(HiMixRAW.outputCommands) #RECOSIM RECOSIMEventContent.outputCommands.extend(RecoHIRECO.outputCommands) RECOSIMEventContent.outputCommands.extend(HiMixRECO.outputCommands) #AODSIM AODSIMEventContent.outputCommands.extend(RecoHIAOD.outputCommands) AODSIMEventContent.outputCommands.extend(HiMixAOD.outputCommands) #FEVT (RAW + RECO) FEVTEventContent.outputCommands.extend(RecoHIFEVT.outputCommands) FEVTEventContent.outputCommands.extend(RecoHIRAWOutput) #FEVTHLTALL (FEVT + all HLT) FEVTHLTALLEventContent.outputCommands.extend(RecoHIFEVT.outputCommands) FEVTHLTALLEventContent.outputCommands.extend(RecoHIRAWOutput) #FEVTSIM (RAWSIM + RECOSIM) FEVTSIMEventContent.outputCommands.extend(RecoHIFEVT.outputCommands) FEVTSIMEventContent.outputCommands.extend(RecoHIRAWOutput) FEVTSIMEventContent.outputCommands.extend(HiMixRAW.outputCommands) #RAW DEBUG(e.g. mergedtruth from trackingParticles) RAWDEBUGEventContent.outputCommands.extend(RecoHIRAWOutput) RAWDEBUGEventContent.outputCommands.extend(HiMixRAW.outputCommands) #RAW HLT DEBUG 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(RecoHIFEVT.outputCommands) FEVTDEBUGEventContent.outputCommands.extend(RecoHIRAWOutput) FEVTDEBUGEventContent.outputCommands.extend(HiMixRAW.outputCommands) #FEVT HLT DEBUG FEVTDEBUGHLTEventContent.outputCommands.extend(RecoHIFEVT.outputCommands) FEVTDEBUGHLTEventContent.outputCommands.extend(RecoHIRAWOutput) FEVTDEBUGHLTEventContent.outputCommands.extend(HiMixRAW.outputCommands)