-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40689 from abdoulline/PFCluster_HB2023
[12_6_X] ParticleFlow HB customisation for 2023 TSG studies
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
RecoParticleFlow/PFClusterProducer/python/particleFlow_HB2023.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Based on the end-of-2023 assumptions for PU65 and 90/fb | ||
# https://indico.cern.ch/event/1237252/contributions/5204534/attachments/2574097/4448011/v4_Prep_for_2023_TSG_Jan17_2023.pdf | ||
# "mild"(medium) cuts update for HB, while keeping 2022 HE cuts intact | ||
# To be used in cmsDriver command: | ||
# --customise RecoParticleFlow/PFClusterProducer/particleFlow_HB2023.customiseHB2023 | ||
|
||
import FWCore.ParameterSet.Config as cms | ||
def customiseHB2023(process): | ||
recHB =[0.4, 0.3, 0.3, 0.3] | ||
seedHB =[0.6, 0.5, 0.5, 0.5] | ||
process.particleFlowClusterHBHE.seedFinder.thresholdsByDetector[0].seedingThreshold = seedHB | ||
process.particleFlowClusterHBHE.initialClusteringStep.thresholdsByDetector[0].gatheringThreshold = recHB | ||
process.particleFlowClusterHBHE.pfClusterBuilder.recHitEnergyNorms[0].recHitEnergyNorm = recHB | ||
process.particleFlowClusterHBHE.pfClusterBuilder.positionCalc.logWeightDenominatorByDetector[0].logWeightDenominator = recHB | ||
process.particleFlowClusterHBHE.pfClusterBuilder.allCellsPositionCalc.logWeightDenominatorByDetector[0].logWeightDenominator = recHB | ||
process.particleFlowClusterHCAL.pfClusterBuilder.allCellsPositionCalc.logWeightDenominatorByDetector[0].logWeightDenominator = recHB | ||
process.particleFlowRecHitHBHE.producers[0].qualityTests[0].cuts[0].threshold = recHB | ||
|
||
return(process) |