Revision: | 1.1 |
Committed: | Wed Jul 20 11:33:57 2011 UTC (13 years, 9 months ago) by andersj |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | HEAD |
Log Message: | initial version |
# | User | Rev | Content |
---|---|---|---|
1 | andersj | 1.1 | import FWCore.ParameterSet.Config as cms |
2 | |||
3 | # producer of rechits starting from digis | ||
4 | ecalUncalibRecHit = cms.EDProducer("EcalUncalibRecHitProducer", | ||
5 | EBdigiCollection = cms.InputTag("ecalEBunpacker","ebDigis"), | ||
6 | EEhitCollection = cms.string('EcalUncalibRecHitsEE'), | ||
7 | EEdigiCollection = cms.InputTag("ecalEBunpacker","eeDigis"), | ||
8 | EBhitCollection = cms.string('EcalUncalibRecHitsEB'), | ||
9 | algo = cms.string("EcalUncalibRecHitWorkerWeights") | ||
10 | ) |