CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/CalibMuon/DTCalibration/python/dtT0Analyzer_cfg.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 process = cms.Process("DTT0Analyzer")
00004 
00005 process.load("Configuration.StandardSequences.Geometry_cff")
00006 process.load("Geometry.DTGeometry.dtGeometry_cfi")
00007 process.DTGeometryESModule.applyAlignment = False
00008 
00009 process.load("CondCore.DBCommon.CondDBSetup_cfi")
00010 
00011 process.source = cms.Source("EmptySource",
00012     numberEventsInRun = cms.untracked.uint32(1),
00013     firstRun = cms.untracked.uint32(1)
00014 )
00015 
00016 process.maxEvents = cms.untracked.PSet(
00017     input = cms.untracked.int32(1)
00018 )
00019 
00020 process.dtT0Analyzer = cms.EDAnalyzer("DTT0Analyzer",
00021     rootFileName = cms.untracked.string("") 
00022 )
00023 
00024 process.p = cms.Path(process.dtT0Analyzer)