Skip to content

Commit

Permalink
Merge pull request #40447 from abdoulline/HBHE_ZS_1TS_SOI_12_6_X
Browse files Browse the repository at this point in the history
[12_6_X] HCAL: make HBHE zero suppression simulation identical to the data-taking one for Run3
  • Loading branch information
cmsbuild committed Jan 11, 2023
2 parents 0e938af + 754e53f commit 71c336e
Showing 1 changed file with 6 additions and 6 deletions.
Expand Up @@ -27,24 +27,24 @@

from Configuration.Eras.Modifier_run2_HF_2017_cff import run2_HF_2017
run2_HF_2017.toModify( simHcalDigis,
HFregion = cms.vint32(1,2)
HFregion = [1,2]
)

from Configuration.Eras.Modifier_run2_HB_2018_cff import run2_HB_2018
run2_HB_2018.toModify( simHcalDigis,
HBregion = cms.vint32(2,5)
HBregion = [2,5]
)

from Configuration.Eras.Modifier_run2_HE_2018_cff import run2_HE_2018
run2_HE_2018.toModify( simHcalDigis,
HEregion = cms.vint32(2,5)
HEregion = [2,5]
)

from Configuration.Eras.Modifier_run3_common_cff import run3_common
run3_common.toModify( simHcalDigis,
use1ts = cms.bool(True),
HBregion = cms.vint32(4,7),
HEregion = cms.vint32(4,7)
use1ts = True,
HBregion = [5,6], # SOI in 10TS
HEregion = [5,6] # SOI in 10TS
)


Expand Down

0 comments on commit 71c336e

Please sign in to comment.