ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/andersj/HcalPlotter/python/ecalGlobalUncalibRecHit_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
Log Message:
initial version

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 ecalGlobalUncalibRecHit = cms.EDProducer("EcalUncalibRecHitProducer",
4 EBdigiCollection = cms.InputTag("ecalDigis","ebDigis"),
5 EEdigiCollection = cms.InputTag("ecalDigis","eeDigis"),
6 EBhitCollection = cms.string("EcalUncalibRecHitsEB"),
7 EEhitCollection = cms.string('EcalUncalibRecHitsEE'),
8
9 # for ratio method
10 EBtimeFitParameters = cms.vdouble(-2.015452e+00, 3.130702e+00, -1.234730e+01, 4.188921e+01, -8.283944e+01, 9.101147e+01, -5.035761e+01, 1.105621e+01),
11 EEtimeFitParameters = cms.vdouble(-2.390548e+00, 3.553628e+00, -1.762341e+01, 6.767538e+01, -1.332130e+02, 1.407432e+02, -7.541106e+01, 1.620277e+01),
12 EBamplitudeFitParameters = cms.vdouble(1.138,1.652),
13 EEamplitudeFitParameters = cms.vdouble(1.890,1.400),
14 EBtimeFitLimits_Lower = cms.double(0.2),
15 EBtimeFitLimits_Upper = cms.double(1.4),
16 EEtimeFitLimits_Lower = cms.double(0.2),
17 EEtimeFitLimits_Upper = cms.double(1.4),
18 outOfTimeThreshold = cms.double(0.25),
19 amplitudeThresholdEB = cms.double(20 * 1),
20 amplitudeThresholdEE = cms.double(20 * 1),
21
22 ebPulseShape = cms.vdouble( 5.2e-05,-5.26e-05 , 6.66e-05, 0.1168, 0.7575, 1., 0.8876, 0.6732, 0.4741, 0.3194 ),
23 eePulseShape = cms.vdouble( 5.2e-05,-5.26e-05 , 6.66e-05, 0.1168, 0.7575, 1., 0.8876, 0.6732, 0.4741, 0.3194 ),
24
25 algo = cms.string("EcalUncalibRecHitWorkerGlobal")
26 )