CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/RecoTBCalo/EcalTBTDCReconstructor/python/ecal2006TBH2TDCReconstructor_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #TDC recInfo reconstruction for H2 ECAL&HCAL TB
00004 ecal2006TBH2TDCReconstructor = cms.EDProducer("EcalTBH2TDCRecInfoProducer",
00005     rawInfoProducer = cms.string('tbunpacker'),
00006     triggerDataProducer = cms.string('tbunpacker'),
00007     recInfoCollection = cms.string('EcalTBTDCRecInfo'),
00008     tdcZeros = cms.VPSet(cms.PSet(
00009         endRun = cms.int32(31031),
00010         tdcZero = cms.double(1050.5),
00011         startRun = cms.int32(27540)
00012     ), 
00013         cms.PSet(
00014             endRun = cms.int32(999999),
00015             tdcZero = cms.double(1058.5),
00016             startRun = cms.int32(31032)
00017         )),
00018     rawInfoCollection = cms.string(''),
00019     triggerDataCollection = cms.string('')
00020 )
00021 
00022