1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import FWCore.ParameterSet.Config as cms
from Configuration.StandardSequences.Eras import eras
process = cms.Process("DTVDriftAnalyzer",eras.Run3)
process.load("CondCore.CondDB.CondDB_cfi")
process.source = cms.Source("EmptySource",
numberEventsInRun = cms.untracked.uint32(1),
firstRun = cms.untracked.uint32(1)
)
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(1)
)
process.dtVDriftAnalyzer = cms.EDAnalyzer("DTVDriftAnalyzer",
rootFileName = cms.untracked.string(''),
readLegacyVDriftDB =cms.bool(True),
)
process.p = cms.Path(process.dtVDriftAnalyzer)
|