CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalMultiFitUncalibRecHit_cfi.py
Go to the documentation of this file.
2 
4 
5 ecalMultiFitUncalibRecHit = cms.EDProducer("EcalUncalibRecHitProducer",
6  EBdigiCollection = cms.InputTag("ecalDigis","ebDigis"),
7  EEdigiCollection = cms.InputTag("ecalDigis","eeDigis"),
8  EBhitCollection = cms.string("EcalUncalibRecHitsEB"),
9  EEhitCollection = cms.string('EcalUncalibRecHitsEE'),
10 
11  # for multifit method
12  EcalPulseShapeParameters = cms.PSet( ecal_pulse_shape_parameters ),
13  activeBXs = cms.vint32(-5,-4,-3,-2,-1,0,1,2,3,4),
14  ampErrorCalculation = cms.bool(True),
15  useLumiInfoRunHeader = cms.bool(True),
16 
17  doPrefitEB = cms.bool(False),
18  doPrefitEE = cms.bool(False),
19  prefitMaxChiSqEB = cms.double(25.),
20  prefitMaxChiSqEE = cms.double(10.),
21 
22 
23 
24  # decide which algorithm to be use to calculate the jitter
25  timealgo = cms.string("RatioMethod"),
26 
27  # for ratio method
28  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),
29  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),
30  EBamplitudeFitParameters = cms.vdouble(1.138,1.652),
31  EEamplitudeFitParameters = cms.vdouble(1.890,1.400),
32  EBtimeFitLimits_Lower = cms.double(0.2),
33  EBtimeFitLimits_Upper = cms.double(1.4),
34  EEtimeFitLimits_Lower = cms.double(0.2),
35  EEtimeFitLimits_Upper = cms.double(1.4),
36  # for time error
37  EBtimeConstantTerm= cms.double(.6),
38  EEtimeConstantTerm= cms.double(1.0),
39 
40  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 ),
41  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 ),
42 
43  # for kPoorReco flag
44  kPoorRecoFlagEB = cms.bool(True),
45  kPoorRecoFlagEE = cms.bool(False),
46  chi2ThreshEB_ = cms.double(65.0),
47  chi2ThreshEE_ = cms.double(50.0),
48 
49  algo = cms.string("EcalUncalibRecHitWorkerMultiFit")
50 )