Skip to content

Commit

Permalink
Merge pull request #25468 from jaehyeok/uniform-hbhe-timeslew
Browse files Browse the repository at this point in the history
[HBHE] Use uniform timeslew parameters
  • Loading branch information
cmsbuild authored Dec 18, 2018
2 parents d4d690b + 59df65d commit 3c23965
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions CalibCalorimetry/HcalPlugins/python/HcalTimeSlew_cff.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import FWCore.ParameterSet.Config as cms

HcalTimeSlewEP = cms.ESSource("HcalTimeSlewEP",
appendToDataLabel = cms.string("HBHE"),
appendToDataLabel = cms.string("HBHE"),
# For method2/simulation
timeSlewParametersM2 = cms.VPSet(
cms.PSet(#Slow
cms.PSet(#Slow
tzero = cms.double(23.960177), slope = cms.double(-3.178648), tmax = cms.double(16.00)),
cms.PSet(#Medium
tzero = cms.double(13.307784), slope = cms.double(-1.556668), tmax = cms.double(10.00)),
tzero = cms.double(11.977461), slope = cms.double(-1.5610227), tmax = cms.double(10.00)),
cms.PSet(#Fast
tzero = cms.double(9.109694), slope = cms.double(-1.075824), tmax = cms.double(6.25))
),
# For method3
timeSlewParametersM3 = cms.VPSet(
# For method3
timeSlewParametersM3 = cms.VPSet(
cms.PSet(#TestStand (Parameters not used)
cap = cms.double(6.0), tspar0 = cms.double(12.2999), tspar1 = cms.double(-2.19142), tspar2 = cms.double(0.0), tspar0_siPM = cms.double(0.0), tspar1_siPM = cms.double(0.0), tspar2_siPM = cms.double(0.0)),
cms.PSet(#Data
Expand All @@ -23,9 +23,3 @@
cap = cms.double(6.0), tspar0 = cms.double(12.2999), tspar1 = cms.double(-2.19142), tspar2 = cms.double(0.0), tspar0_siPM = cms.double(0.0), tspar1_siPM = cms.double(0.0), tspar2_siPM = cms.double(0.0))
)
)

from Configuration.Eras.Modifier_run2_HE_2018_cff import run2_HE_2018
#HBHE2018 - Medium
run2_HE_2018.toModify(
HcalTimeSlewEP, timeSlewParametersM2 = {
1: dict(tzero = cms.double(11.977461), slope = cms.double(-1.5610227),tmax = cms.double(10.00))})

0 comments on commit 3c23965

Please sign in to comment.