/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoParticleFlow/PFClusterProducer/python/particleFlowClusterHGC_cfi.py
75 строк
3 KB
Felice Pantaleo
Switch TICL pattern recognition and HLT CLUE3D producers to PFN-based defaults
21 апр 2026, 17:44
21 апр 2026, 17:44
2387d0b
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from RecoParticleFlow.PFClusterProducer.particleFlowRealisticSimClusterHGCCalibrations_cfi import * from SimCalorimetry.HGCalSimProducers.hgcalDigitizer_cfi import * #### PF CLUSTER HGCal #### #cleaning (none for now) #seeding _passThruSeeds_HGCal = cms.PSet( algoName = cms.string("PassThruSeedFinder"), thresholdsByDetector = cms.VPSet( ), nNeighbours = cms.int32(8) ) # initial step clusterizer _simClusterMapper_HGCal = cms.PSet( algoName = cms.string("RealisticSimClusterMapper"), exclusiveFraction = cms.double(0.6), invisibleFraction = cms.double(0.6), maxDistanceFilter = cms.bool(True), #filtering out hits outside a cylinder of 10cm radius, built around the center of gravity per each layer maxDistance = cms.double(10.0), maxDforTimingSquared = cms.double(4.0), timeOffset = hgceeDigitizer.tofDelay, minNHitsforTiming = cms.uint32(3), useMCFractionsForExclEnergy = cms.bool(False), thresholdsByDetector = cms.VPSet( ), hadronCalib = hadronCorrections.value, egammaCalib = egammaCorrections.value, calibMinEta = minEtaCorrection, calibMaxEta = maxEtaCorrection, simClusterSrc = cms.InputTag("mix:MergedCaloTruth") ) from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2 premix_stage2.toModify(_simClusterMapper_HGCal, simClusterSrc = "mixData:MergedCaloTruth") #position calculations _positionCalcPCA_HGCal = cms.PSet( algoName = cms.string("Cluster3DPCACalculator"), minFractionInCalc = cms.double(1e-9), updateTiming = cms.bool(False) ) _hgcalTracksterMapper_HGCal = cms.PSet( algoName = cms.string("PFClusterFromHGCalTrackster"), thresholdsByDetector = cms.VPSet( ), tracksterSrc = cms.InputTag("ticlCandidate"), clusterSrc = cms.InputTag("hgcalMergeLayerClusters"), filterByTracksterPID = cms.bool(True), pid_threshold = cms.double(0.8), filter_on_categories = cms.vint32([0, 1]), filterByTracksterIteration = cms.bool(False), filter_on_iterations = cms.vint32([0, 1]), ) particleFlowClusterHGCal = cms.EDProducer( "PFClusterProducer", recHitsSource = cms.InputTag("particleFlowRecHitHGC"), usePFThresholdsFromDB = cms.bool(False), recHitCleaners = cms.VPSet(), seedCleaners = cms.VPSet(), seedFinder = _passThruSeeds_HGCal, initialClusteringStep = _hgcalTracksterMapper_HGCal, pfClusterBuilder = cms.PSet(), positionReCalc = _positionCalcPCA_HGCal, energyCorrector = cms.PSet() ) particleFlowClusterHGCalFromSimCl = particleFlowClusterHGCal.clone( initialClusteringStep = _simClusterMapper_HGCal )