CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalMipGraphs_cfi.py
Go to the documentation of this file.
2 
3 ecalMipGraphs = cms.EDAnalyzer("EcalMipGraphs",
4  # parameter for the amplitude threshold
5  amplitudeThreshold = cms.untracked.double(0.5),
6  EBDigiCollection = cms.InputTag("ecalEBunpacker","ebDigis"),
7  EEDigiCollection = cms.InputTag("ecalEBunpacker","eeDigis"),
8  EcalRecHitCollectionEB = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
9  EcalRecHitCollectionEE = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
10  headerProducer = cms.InputTag("ecalEBunpacker"),
11  #EcalUncalibratedRecHitCollection = cms.InputTag("ecalUncalibHit","EcalUncalibRecHitsEB"),
12  # masked EBids
13  maskedEBs = cms.untracked.vstring('-1'),
14  # masked FEDs
15  maskedFEDs = cms.untracked.vint32(-1),
16  # use hash index to mask channels
17  # add a simple description of hashIndex (hhahhahhh...)
18  maskedChannels = cms.untracked.vint32(),
19  # parameter for fixed crystals mode (use hashedIndices)
20  seedCrys = cms.untracked.vint32(),
21  # parameter for size of the square matrix, i.e.,
22  # should the seed be at the center of a 3x3 matrix, a 5x5, etc.
23  # must be an odd number (default is 3)
24  side = cms.untracked.int32(3),
25  minimumTimingAmplitude = cms.untracked.double(0.100)
26 )
27 
28