File indexing completed on 2024-04-06 12:06:44
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("RAWFilterTest")
0004
0005 process.load("DPGAnalysis.SiStripTools.filtertest.config_102169_raw_cff")
0006
0007 process.eventtimedistribfilter = process.eventtimedistribution.clone()
0008
0009
0010
0011
0012 process.load("DPGAnalysis.SiStripTools.filters.Potential_TIBTEC_HugeEvents_AlCaReco_cfi")
0013 process.PotentialTIBTECHugeEvents.commonConfiguration.historyProduct = cms.untracked.InputTag("consecutiveHEs")
0014 process.PotentialTIBTECHugeEvents.commonConfiguration.APVPhaseLabel = cms.untracked.string("APVPhases")
0015
0016
0017
0018 process.TFileService = cms.Service('TFileService',
0019 fileName = cms.string('filter_test_102169_raw.root')
0020 )
0021
0022 process.p0 = cms.Path(process.sinit +
0023 process.eventtimedistribution +
0024 process.PotentialTIBTECHugeEvents +
0025 process.eventtimedistribfilter )
0026