CMS 3D CMS Logo

tpScales_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 tpScales = cms.PSet(
4  HF=cms.PSet(
5  NCTShift=cms.int32(1),
6  RCTShift=cms.int32(3),
7  ),
8  HBHE=cms.PSet(
9  LSBQIE8=cms.double(1/8.),
10  LSBQIE11=cms.double(1/16.),
11  LSBQIE11Overlap=cms.double(1/8.),
12  )
13 )
14 
15 from Configuration.Eras.Modifier_run2_HF_2017_cff import run2_HF_2017
16 run2_HF_2017.toModify(tpScales.HF, NCTShift=2)
17 
18 from Configuration.Eras.Modifier_run3_HB_cff import run3_HB
19 run3_HB.toModify(tpScales.HBHE, LSBQIE11Overlap=1/16.)