CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtVDriftAnalyzer_cfg.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 process = cms.Process("DTVDriftAnalyzer")
4 
5 process.load("CondCore.DBCommon.CondDBSetup_cfi")
6 
7 process.source = cms.Source("EmptySource",
8  numberEventsInRun = cms.untracked.uint32(1),
9  firstRun = cms.untracked.uint32(1)
10 )
11 
12 process.maxEvents = cms.untracked.PSet(
13  input = cms.untracked.int32(1)
14 )
15 
16 process.dtVDriftAnalyzer = cms.EDAnalyzer("DTVDriftAnalyzer",
17  rootFileName = cms.untracked.string('')
18 )
19 
20 process.p = cms.Path(process.dtVDriftAnalyzer)