Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HLT menu development for 14_1_X (3/N) #46509

Open
wants to merge 2 commits into
base: CMSSW_14_1_X
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7,701 changes: 5,908 additions & 1,793 deletions HLTrigger/Configuration/python/HLT_FULL_cff.py

Large diffs are not rendered by default.

146 changes: 113 additions & 33 deletions HLTrigger/Configuration/python/HLT_GRun_cff.py

Large diffs are not rendered by default.

4,821 changes: 3,985 additions & 836 deletions HLTrigger/Configuration/python/HLT_HIon_cff.py

Large diffs are not rendered by default.

112 changes: 110 additions & 2 deletions HLTrigger/Configuration/python/HLT_PIon_cff.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# hltGetConfiguration /dev/CMSSW_14_1_0/PIon --cff --data --type PIon

# /dev/CMSSW_14_1_0/PIon/V26 (CMSSW_14_1_1)
# /dev/CMSSW_14_1_0/PIon/V40 (CMSSW_14_1_1)

import FWCore.ParameterSet.Config as cms

Expand All @@ -9,9 +9,81 @@
fragment.load("Configuration.StandardSequences.Accelerators_cff")

fragment.HLTConfigVersion = cms.PSet(
tableName = cms.string("/dev/CMSSW_14_1_0/PIon/V26")
tableName = cms.string("/dev/CMSSW_14_1_0/PIon/V40")
)

fragment.HLTGroupedCkfTrajectoryBuilderP5 = cms.PSet(
useSameTrajFilter = cms.bool( True ),
ComponentType = cms.string( "GroupedCkfTrajectoryBuilder" ),
keepOriginalIfRebuildFails = cms.bool( False ),
lostHitPenalty = cms.double( 30.0 ),
lockHits = cms.bool( True ),
requireSeedHitsInRebuild = cms.bool( True ),
TTRHBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
maxDPhiForLooperReconstruction = cms.double( 2.0 ),
maxPtForLooperReconstruction = cms.double( 0.0 ),
propagatorOpposite = cms.string( "PropagatorWithMaterialOpposite" ),
trajectoryFilter = cms.PSet( refToPSet_ = cms.string( "HLTCkfBaseTrajectoryFilterP5" ) ),
propagatorAlong = cms.string( "PropagatorWithMaterial" ),
seedAs5DHit = cms.bool( False ),
minNrOfHitsForRebuild = cms.int32( 5 ),
maxCand = cms.int32( 1 ),
alwaysUseInvalidHits = cms.bool( True ),
estimator = cms.string( "hltESChi2MeasurementEstimatorForP5" ),
inOutTrajectoryFilter = cms.PSet( refToPSet_ = cms.string( "HLTCkfBaseTrajectoryFilter_block" ) ),
intermediateCleaning = cms.bool( True ),
foundHitBonus = cms.double( 10.0 ),
updator = cms.string( "hltESPKFUpdator" ),
bestHitOnly = cms.bool( True )
)
fragment.HLTCkfBaseTrajectoryFilterP5 = cms.PSet(
minimumNumberOfHits = cms.int32( 5 ),
ComponentType = cms.string( "CkfBaseTrajectoryFilter" ),
seedExtension = cms.int32( 0 ),
chargeSignificance = cms.double( -1.0 ),
pixelSeedExtension = cms.bool( False ),
strictSeedExtension = cms.bool( False ),
nSigmaMinPt = cms.double( 5.0 ),
maxCCCLostHits = cms.int32( 9999 ),
minHitsAtHighEta = cms.int32( 5 ),
minPt = cms.double( 0.5 ),
maxConsecLostHits = cms.int32( 3 ),
extraNumberOfHitsBeforeTheFirstLoop = cms.int32( 4 ),
constantValueForLostHitsFractionFilter = cms.double( 2.0 ),
highEtaSwitch = cms.double( 5.0 ),
seedPairPenalty = cms.int32( 0 ),
maxNumberOfHits = cms.int32( 100 ),
minNumberOfHitsForLoopers = cms.int32( 13 ),
minGoodStripCharge = cms.PSet( refToPSet_ = cms.string( "HLTSiStripClusterChargeCutNone" ) ),
minNumberOfHitsPerLoop = cms.int32( 4 ),
minHitsMinPt = cms.int32( 3 ),
maxLostHitsFraction = cms.double( 0.1 ),
maxLostHits = cms.int32( 4 )
)
fragment.HLTCkfBaseTrajectoryFilter_block = cms.PSet(
minimumNumberOfHits = cms.int32( 5 ),
ComponentType = cms.string( "CkfBaseTrajectoryFilter" ),
seedExtension = cms.int32( 0 ),
chargeSignificance = cms.double( -1.0 ),
pixelSeedExtension = cms.bool( False ),
strictSeedExtension = cms.bool( False ),
nSigmaMinPt = cms.double( 5.0 ),
maxCCCLostHits = cms.int32( 9999 ),
minHitsAtHighEta = cms.int32( 5 ),
minPt = cms.double( 0.9 ),
maxConsecLostHits = cms.int32( 1 ),
extraNumberOfHitsBeforeTheFirstLoop = cms.int32( 4 ),
constantValueForLostHitsFractionFilter = cms.double( 2.0 ),
highEtaSwitch = cms.double( 5.0 ),
seedPairPenalty = cms.int32( 0 ),
maxNumberOfHits = cms.int32( 100 ),
minNumberOfHitsForLoopers = cms.int32( 13 ),
minGoodStripCharge = cms.PSet( refToPSet_ = cms.string( "HLTSiStripClusterChargeCutNone" ) ),
minNumberOfHitsPerLoop = cms.int32( 4 ),
minHitsMinPt = cms.int32( 3 ),
maxLostHitsFraction = cms.double( 0.1 ),
maxLostHits = cms.int32( 999 )
)
fragment.HLTIter4PSetTrajectoryBuilderIT = cms.PSet(
ComponentType = cms.string( "CkfTrajectoryBuilder" ),
lostHitPenalty = cms.double( 30.0 ),
Expand Down Expand Up @@ -1460,6 +1532,42 @@
appendToDataLabel = cms.string( "" )
)

fragment.hltESPTrajectoryCleanerBySharedHitsP5 = cms.ESProducer( "TrajectoryCleanerESProducer",
ComponentName = cms.string( "hltESPTrajectoryCleanerBySharedHitsP5" ),
ComponentType = cms.string( "TrajectoryCleanerBySharedHits" ),
fractionShared = cms.double( 0.19 ),
ValidHitBonus = cms.double( 5.0 ),
MissingHitPenalty = cms.double( 20.0 ),
allowSharedFirstHit = cms.bool( True )
)
fragment.hltESFittingSmootherRKP5 = cms.ESProducer( "KFFittingSmootherESProducer",
ComponentName = cms.string( "hltESFittingSmootherRKP5" ),
Fitter = cms.string( "hltESPRKTrajectoryFitter" ),
Smoother = cms.string( "hltESPRKTrajectorySmoother" ),
EstimateCut = cms.double( 20.0 ),
MaxFractionOutliers = cms.double( 0.3 ),
MaxNumberOfOutliers = cms.int32( 3 ),
MinDof = cms.int32( 2 ),
NoOutliersBeginEnd = cms.bool( False ),
MinNumberOfHits = cms.int32( 4 ),
MinNumberOfHitsHighEta = cms.int32( 5 ),
HighEtaSwitch = cms.double( 5.0 ),
RejectTracks = cms.bool( True ),
BreakTrajWith2ConsecutiveMissing = cms.bool( False ),
NoInvalidHitsBeginEnd = cms.bool( True ),
LogPixelProbabilityCut = cms.double( 0.0 ),
appendToDataLabel = cms.string( "" )
)
fragment.hltESChi2MeasurementEstimatorForP5 = cms.ESProducer( "Chi2MeasurementEstimatorESProducer",
MaxChi2 = cms.double( 100.0 ),
nSigma = cms.double( 4.0 ),
MaxDisplacement = cms.double( 100.0 ),
MaxSagitta = cms.double( -1.0 ),
MinimalTolerance = cms.double( 0.5 ),
MinPtForHitRecoveryInGluedDet = cms.double( 100000.0 ),
ComponentName = cms.string( "hltESChi2MeasurementEstimatorForP5" ),
appendToDataLabel = cms.string( "" )
)
fragment.AnyDirectionAnalyticalPropagator = cms.ESProducer( "AnalyticalPropagatorESProducer",
MaxDPhi = cms.double( 1.6 ),
ComponentName = cms.string( "AnyDirectionAnalyticalPropagator" ),
Expand Down
Loading