File indexing completed on 2024-04-06 11:58:29
0001 import FWCore.ParameterSet.Config as cms
0002 from Configuration.StandardSequences.Eras import eras
0003
0004 process = cms.Process("DTTTrigAnalyzer",eras.Run3)
0005
0006 process.load("CondCore.CondDB.CondDB_cfi")
0007
0008 process.source = cms.Source("EmptySource",
0009 numberEventsInRun = cms.untracked.uint32(1),
0010 firstRun = cms.untracked.uint32(1)
0011 )
0012
0013 process.maxEvents = cms.untracked.PSet(
0014 input = cms.untracked.int32(1)
0015 )
0016
0017 process.dtTTrigAnalyzer = cms.EDAnalyzer("DTTTrigAnalyzer",
0018 dbLabel = cms.untracked.string(""),
0019 rootFileName = cms.untracked.string("")
0020 )
0021
0022 process.p = cms.Path(process.dtTTrigAnalyzer)