CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtT0WireCalibration_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 dtT0WireCalibration = cms.EDAnalyzer("DTT0Calibration",
4  # Set to true to correct t0's from chamber mean
5  # Otherwise write absolute t0's (to be corrected in a second step)
6  correctByChamberMean = cms.bool(True),
7  # Cells for which you want the histos (default = None)
8  cellsWithHisto = cms.untracked.vstring(),
9  # Label to retrieve DT digis from the event
10  digiLabel = cms.untracked.string('muonDTDigis'),
11  calibSector = cms.untracked.string('All'),
12  # Chose the wheel, sector (default = All)
13  calibWheel = cms.untracked.string('All'),
14  # Number of events to be used for the t0 per layer histos
15  eventsForWireT0 = cms.uint32(25000),
16  # Name of the ROOT file which will contain the test pulse times per layer
17  rootFileName = cms.untracked.string('DTTestPulses.root'),
18  debug = cms.untracked.bool(False),
19  rejectDigiFromPeak = cms.uint32(50),
20  # Acceptance for TP peak width
21  tpPeakWidth = cms.double(15.0),
22  # Number of events to be used for the t0 per layer histos
23  eventsForLayerT0 = cms.uint32(5000)
24 )