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 dtNoiseCalibration = cms.EDAnalyzer("DTNoiseCalibration",
0004     # Label to retrieve DT digis from the event
0005     digiLabel = cms.InputTag('muonDTDigis'),
0006     # Output ROOT file name 
0007     rootFileName = cms.untracked.string('dtNoiseCalib.root'),
0008     # Trigger mode
0009     useTimeWindow = cms.bool(True),
0010     # The trigger width (ns) (full window used if useTimeWindow = False)
0011     triggerWidth = cms.double(2000),
0012     # Time window defined as tTrig - offset (TDC counts). If defaultTtrig not set reads from DB.
0013     #defaultTtrig = cms.int32(322),
0014     timeWindowOffset = cms.int32(100),
0015     # Noise threshold (Hz)
0016     maximumNoiseRate = cms.double(2000),
0017     # Use absolute rate per channel or subtract average rate in layer  
0018     useAbsoluteRate = cms.bool(False),
0019     # Cells with detailed histos
0020     cellsWithHisto = cms.vstring(
0021         '-1 1 3 1 2 48',
0022         '0 1 7 1 1 8',
0023         '0 1 8 2 3 56',
0024         '2 1 8 2 2 56',
0025         '2 1 8 2 2 57',
0026         '2 1 12 1 2 3',
0027         '2 1 12 1 3 2',
0028         '0 2 2 1 2 3',
0029         '-2 3 3 1 2 2',
0030         '1 3 3 1 4 27',
0031         '1 3 3 1 4 28',
0032         '1 3 3 1 4 29',
0033         '1 3 3 1 4 30'
0034     )
0035 )