/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimGeneral/Configuration/python/SimGeneral_EventContent_cff.py
44 строки
2 KB
Andre Govinda Stahl Leiton
Add pp and UPC eras for 2025 oxygen runs
17 апр 2025, 04:40
17 апр 2025, 04:40
e3fec58
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms #Full Event content SimGeneralFEVTDEBUG = cms.PSet( outputCommands = cms.untracked.vstring('drop *_trackingtruthprod_*_*', 'drop *_electrontruth_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep CrossingFramePlaybackInfoNew_*_*_*') ) #RAW content SimGeneralRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int6stdbitsetstdpairs_*_AffectedAPVList_*', 'keep int_*_bunchSpacing_*', 'keep *_genPUProtons_*_*', 'keep *_mix_MergedTrackTruth_*') ) #RECO content SimGeneralRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep *_genPUProtons_*_*') ) #AOD content SimGeneralAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep *_genPUProtons_*_*') ) # Event content for premixing library SimGeneralPREMIX = cms.PSet( outputCommands = cms.untracked.vstring() ) _pp_on_AA_extraCommands = ['keep CrossingFramePlaybackInfoNew_mix_*_*','keep *_heavyIon_*_*'] from Configuration.Eras.Modifier_pp_on_XeXe_2017_cff import pp_on_XeXe_2017 from Configuration.ProcessModifiers.pp_on_AA_cff import pp_on_AA from Configuration.Eras.Modifier_run3_oxygen_cff import run3_oxygen for e in [pp_on_XeXe_2017, pp_on_AA, run3_oxygen]: e.toModify( SimGeneralRAW, outputCommands = SimGeneralRAW.outputCommands + _pp_on_AA_extraCommands ) e.toModify( SimGeneralFEVTDEBUG, outputCommands = SimGeneralFEVTDEBUG.outputCommands + _pp_on_AA_extraCommands ) e.toModify( SimGeneralRECO, outputCommands = SimGeneralRECO.outputCommands + _pp_on_AA_extraCommands ) e.toModify( SimGeneralAOD, outputCommands = SimGeneralAOD.outputCommands + _pp_on_AA_extraCommands )