Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # producer of rechits starting from tb simulation
0004 ecalTBSimWeightUncalibRecHit = cms.EDProducer("EcalTBWeightUncalibRecHitProducer",
0005     EBdigiCollection = cms.InputTag('simEcalUnsuppressedDigis',''),
0006     EEdigiCollection = cms.InputTag('',''),                                              
0007     tdcRecInfoCollection = cms.InputTag('ecalTBSimTDCReconstructor','EcalTBTDCRecInfo'),
0008     EBhitCollection = cms.string('EcalUncalibRecHitsEB'),
0009     EEhitCollection = cms.string('EcalUncalibRecHitsEE'),
0010     nbTimeBin = cms.int32(25),
0011 )
0012 
0013