CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/CalibMuon/DTCalibration/python/dtT0WireCalibration_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dtT0WireCalibration = cms.EDAnalyzer("DTT0Calibration",
00004     # Cells for which you want the histos (default = None)
00005     cellsWithHisto = cms.untracked.vstring(),
00006     # Label to retrieve DT digis from the event
00007     digiLabel = cms.untracked.string('muonDTDigis'),
00008     calibSector = cms.untracked.string('All'),
00009     # Chose the wheel, sector (default = All)
00010     calibWheel = cms.untracked.string('All'),
00011     # Number of events to be used for the t0 per layer histos
00012     eventsForWireT0 = cms.uint32(25000),
00013     # Name of the ROOT file which will contain the test pulse times per layer
00014     rootFileName = cms.untracked.string('DTTestPulses.root'),
00015     debug = cms.untracked.bool(False),
00016     rejectDigiFromPeak = cms.uint32(50),
00017     # Acceptance for TP peak width
00018     tpPeakWidth = cms.double(15.0),
00019     # Number of events to be used for the t0 per layer histos
00020     eventsForLayerT0 = cms.uint32(5000)
00021 )