CMS 3D CMS Logo

dtVDriftAnalyzer_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("DTVDriftAnalyzer",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.dtVDriftAnalyzer = cms.EDAnalyzer("DTVDriftAnalyzer",
18  rootFileName = cms.untracked.string(''),
19  readLegacyVDriftDB =cms.bool(True),
20 )
21 
22 process.p = cms.Path(process.dtVDriftAnalyzer)