CMS 3D CMS Logo

HBHEMethod2Parameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Configuration parameters for Method 2
4 m2Parameters = cms.PSet(
5 
6  applyPedConstraint = cms.bool(True),
7  applyTimeConstraint = cms.bool(True),
8  applyPulseJitter = cms.bool(False),
9  applyTimeSlew = cms.bool(True), #units
10  ts4Min = cms.double(0.), #fC
11  ts4Max = cms.vdouble(100., 20000., 30000), #fC # this is roughly 20 GeV, HPD, siPMdepth1, siPMdepth>1
12  pulseJitter = cms.double(1.), #GeV/bin
13  ###
14  meanPed = cms.double(0.), #GeV
15  meanTime = cms.double(0.), #ns
16  timeSigmaHPD = cms.double(5.), #ns
17  timeSigmaSiPM = cms.double(2.5), #ns
18  ###
19  timeMin = cms.double(-12.5),#ns
20  timeMax = cms.double(12.5), #ns
21  ts4chi2 = cms.vdouble(15.,15.), #chi2 for triple pulse
22  fitTimes = cms.int32(1) # -1 means no constraint on number of fits per channel
23 
24 )