ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/andersj/HcalPlotter/python/ecalFixedAlphaBetaFitUncalibRecHit_cfi.py
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
Error occurred while calculating annotation data.
Log Message:
initial version

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 # producer of rechits starting from digis
4 ecalGlobalUncalibRecHit = cms.EDProducer("EcalUncalibRecHitProducer",
5 EEdigiCollection = cms.InputTag("ecalEBunpacker","eeDigis"),
6 EBdigiCollection = cms.InputTag("ecalEBunpacker","ebDigis"),
7 EEhitCollection = cms.string("EcalUncalibRecHitsEE"),
8 betaEB = cms.double(1.7),
9 betaEE = cms.double(1.37),
10 AlphaBetaFilename = cms.untracked.string("NOFILE"),
11 MinAmplEndcap = cms.double(16.0),
12 MinAmplBarrel = cms.double(12.0),
13 UseDynamicPedestal = cms.bool(True),
14 alphaEB = cms.double(1.2),
15 alphaEE = cms.double(1.63),
16 EBhitCollection = cms.string("EcalUncalibRecHitsEB"),
17 algo = cms.string("EcalUncalibRecHitWorkerFixedAlphaBetaFit")
18 )