CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecal2006TBTDCReconstructor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #TDC recInfo reconstruction
4 ecal2006TBTDCReconstructor = cms.EDProducer("EcalTBTDCRecInfoProducer",
5  use2004OffsetConvention = cms.untracked.bool(False),
6  fitMethod = cms.int32(0),
7  eventHeaderProducer = cms.string('ecalTBunpack'),
8  eventHeaderCollection = cms.string(''),
9  rawInfoProducer = cms.string('ecalTBunpack'),
10  recInfoCollection = cms.string('EcalTBTDCRecInfo'),
11  tdcRanges = cms.VPSet(cms.PSet(
12  endRun = cms.int32(14441),
13  tdcMax = cms.vdouble(1008.0, 927.0, 927.0, 927.0, 927.0),
14  startRun = cms.int32(10339),
15  tdcMin = cms.vdouble(748.0, 400.0, 400.0, 400.0, 400.0)
16  ),
17  cms.PSet(
18  endRun = cms.int32(999999),
19  tdcMax = cms.vdouble(1764.0, 927.0, 927.0, 927.0, 927.0),
20  startRun = cms.int32(14442),
21  tdcMin = cms.vdouble(1502.0, 400.0, 400.0, 400.0, 400.0)
22  )),
23  rawInfoCollection = cms.string('')
24 )
25 
26