CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtT0Analyzer_cfg.py
Go to the documentation of this file.
2 
3 process = cms.Process("DTT0Analyzer")
4 
5 process.load("Configuration.StandardSequences.Geometry_cff")
6 process.load("Geometry.DTGeometry.dtGeometry_cfi")
7 process.DTGeometryESModule.applyAlignment = False
8 
9 process.load("CondCore.DBCommon.CondDBSetup_cfi")
10 
11 process.source = cms.Source("EmptySource",
12  numberEventsInRun = cms.untracked.uint32(1),
13  firstRun = cms.untracked.uint32(1)
14 )
15 
16 process.maxEvents = cms.untracked.PSet(
17  input = cms.untracked.int32(1)
18 )
19 
20 process.dtT0Analyzer = cms.EDAnalyzer("DTT0Analyzer",
21  rootFileName = cms.untracked.string("")
22 )
23 
24 process.p = cms.Path(process.dtT0Analyzer)