Skip to content

Commit

Permalink
make old and new ways of reading thresholds consistent for Phase2 HLT
Browse files Browse the repository at this point in the history
  • Loading branch information
swagata87 committed Nov 16, 2023
1 parent bb67c39 commit ee935b1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
gatheringThreshold = cms.vdouble(0.8, 1.2, 1.2, 1.2),
#Run3 thresholds. Will be overwritten with valid aging customisation
gatheringThreshold = cms.vdouble(0.1, 0.2, 0.3, 0.3),
gatheringThresholdPt = cms.vdouble(0.0, 0.0, 0.0, 0.0)
),
cms.PSet(
Expand Down Expand Up @@ -39,7 +40,8 @@
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
logWeightDenominator = cms.vdouble(0.8, 1.2, 1.2, 1.2)
#Run3 thresholds. Will be overwritten with valid aging customisation
logWeightDenominator = cms.vdouble(0.1, 0.2, 0.3, 0.3)
),
cms.PSet(
depths = cms.vint32(
Expand Down Expand Up @@ -70,7 +72,8 @@
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
logWeightDenominator = cms.vdouble(0.8, 1.2, 1.2, 1.2)
#Run3 thresholds. Will be overwritten with valid aging customisation
logWeightDenominator = cms.vdouble(0.1, 0.2, 0.3, 0.3)
),
cms.PSet(
depths = cms.vint32(
Expand All @@ -92,7 +95,8 @@
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
recHitEnergyNorm = cms.vdouble(0.8, 1.2, 1.2, 1.2)
#Run3 thresholds. Will be overwritten with valid aging customisation
recHitEnergyNorm = cms.vdouble(0.1, 0.2, 0.3, 0.3)
),
cms.PSet(
depths = cms.vint32(
Expand Down Expand Up @@ -143,7 +147,8 @@
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
seedingThreshold = cms.vdouble(1.0, 1.5, 1.5, 1.5),
#Run3 thresholds. Will be overwritten with valid aging customisation
seedingThreshold = cms.vdouble(0.125, 0.250, 0.350, 0.350),
seedingThresholdPt = cms.vdouble(0.0, 0.0, 0.0, 0.0)
),
cms.PSet(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
cms.PSet(
depths = cms.vint32(1, 2, 3, 4),
detector = cms.string('HCAL_BARREL1'),
logWeightDenominator = cms.vdouble(0.8, 1.2, 1.2, 1.2)
#Run3 thresholds. Will be overwritten with valid aging customisation
logWeightDenominator = cms.vdouble(0.1, 0.2, 0.3, 0.3)
),
cms.PSet(
depths = cms.vint32(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
cms.PSet(
depth = cms.vint32(1, 2, 3, 4),
detectorEnum = cms.int32(1),
threshold = cms.vdouble(0.8, 1.2, 1.2, 1.2)
#Run3 thresholds. Will be overwritten with valid aging customisation
threshold = cms.vdouble(0.1, 0.2, 0.3, 0.3)
),
cms.PSet(
depth = cms.vint32(
Expand Down

0 comments on commit ee935b1

Please sign in to comment.