Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:29

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 dtT0WireCalibration = cms.EDAnalyzer("DTT0Calibration",
0004     # Set to true to correct t0's from chamber mean
0005     # Otherwise write absolute t0's (to be corrected in a second step) 
0006     correctByChamberMean = cms.bool(False),
0007     # Cells for which you want the histos (default = None)
0008     cellsWithHisto = cms.untracked.vstring(),
0009     # Label to retrieve DT digis from the event
0010     digiLabel = cms.untracked.string('muonDTDigis'),
0011     calibSector = cms.untracked.string('All'),
0012     # Chose the wheel, sector (default = All)
0013     calibWheel = cms.untracked.string('All'),
0014     # Number of events to be used for the t0 per layer histos
0015     eventsForWireT0 = cms.uint32(25000),
0016     # Name of the ROOT file which will contain the test pulse times per layer
0017     rootFileName = cms.untracked.string('DTTestPulses.root'),
0018     debug = cms.untracked.bool(False),
0019     rejectDigiFromPeak = cms.uint32(50),
0020     # Acceptance for TP peak width
0021     tpPeakWidth = cms.double(15.0),
0022     # Number of events to be used for the t0 per layer histos
0023     eventsForLayerT0 = cms.uint32(5000)
0024 )