CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecal2004TBTDCReconstructor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #TDC recInfo reconstruction
4 ecal2004TBTDCReconstructor = cms.EDProducer("EcalTBTDCRecInfoProducer",
5  use2004OffsetConvention = cms.untracked.bool(True),
6  fitMethod = cms.int32(0),
7  eventHeaderProducer = cms.string('source'),
8  eventHeaderCollection = cms.string(''),
9  rawInfoProducer = cms.string('source'),
10  recInfoCollection = cms.string('EcalTBTDCRecInfo'),
11  tdcRanges = cms.VPSet(cms.PSet(
12  endRun = cms.int32(999999),
13  tdcMax = cms.vdouble(958.0, 927.0, 927.0, 927.0, 927.0),
14  startRun = cms.int32(-1),
15  tdcMin = cms.vdouble(430.0, 400.0, 400.0, 400.0, 400.0)
16  )),
17  rawInfoCollection = cms.string('')
18 )
19 
20