CMS 3D CMS Logo

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