CMS 3D CMS Logo

dtTTrigAnalyzer_cfg.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from Configuration.StandardSequences.Eras import eras
3 
4 process = cms.Process("DTTTrigAnalyzer",eras.Run3)
5 
6 process.load("CondCore.CondDB.CondDB_cfi")
7 
8 process.source = cms.Source("EmptySource",
9  numberEventsInRun = cms.untracked.uint32(1),
10  firstRun = cms.untracked.uint32(1)
11 )
12 
13 process.maxEvents = cms.untracked.PSet(
14  input = cms.untracked.int32(1)
15 )
16 
17 process.dtTTrigAnalyzer = cms.EDAnalyzer("DTTTrigAnalyzer",
18  dbLabel = cms.untracked.string(""),
19  rootFileName = cms.untracked.string("")
20 )
21 
22 process.p = cms.Path(process.dtTTrigAnalyzer)