1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import FWCore.ParameterSet.Config as cms
hltHpsPFTauDeepTauProducer = cms.EDProducer( "DeepTauId",
electrons = cms.InputTag( "default" ),
muons = cms.InputTag( "default" ),
taus = cms.InputTag( "hltHpsPFTauProducer" ),
pfcands = cms.InputTag( "hltParticleFlowTmp" ),
vertices = cms.InputTag( "hltPhase2PixelVertices" ),
rho = cms.InputTag( "hltFixedGridRhoFastjetAll" ),
graph_file = cms.vstring( 'core:RecoTauTag/TrainingFiles/data/DeepTauId/deepTau_2026v2p5_core.pb',
'inner:RecoTauTag/TrainingFiles/data/DeepTauId/deepTau_2026v2p5_inner.pb',
'outer:RecoTauTag/TrainingFiles/data/DeepTauId/deepTau_2026v2p5_outer.pb' ),
mem_mapped = cms.bool( False ),
year = cms.uint32( 2026 ),
version = cms.uint32( 2 ),
sub_version = cms.uint32( 5 ),
debug_level = cms.int32( 0 ),
disable_dxy_pca = cms.bool( True ),
disable_hcalFraction_workaround = cms.bool( False ),
disable_CellIndex_workaround = cms.bool( False ),
save_inputs = cms.bool( False ),
is_online = cms.bool( True ),
VSeWP = cms.vstring( '-1.' ),
VSmuWP = cms.vstring( '-1.' ),
VSjetWP = cms.vstring( 'double t1 = 0.649, t2 = 0.441, t3 = 0.05, x1 = 35, x2 = 100, x3 = 300; if (pt <= x1) return t1; if (pt >= x3) return t3; if (pt < x2) return (t2 - t1) / (x2 - x1) * (pt - x1) + t1; return (t3 - t2) / (x3 - x2) * (pt - x2) + t2;',
'double t1 = 0.7045, t2 = 0.7029, t3 = 0.05, x1 = 30, x2 = 100, x3 = 300; if (pt <= x1) return t1; if (pt >= x3) return t3; if (pt < x2) return (t2 - t1) / (x2 - x1) * (pt - x1) + t1; return (t3 - t2) / (x3 - x2) * (pt - x2) + t2;',
'double t1 = 0.5419, t2 = 0.4837, t3 = 0.050, x1 = 27, x2 = 100, x3 = 300; if (pt <= x1) return t1; if (pt >= x3) return t3; if (pt < x2) return (t2 - t1) / (x2 - x1) * (pt - x1) + t1; return (t3 - t2) / (x3 - x2) * (pt - x2) + t2;',
'double t1 = 0.6072, t2 = 0.125, x1 = 180, x2 = 500; if (pt <= x1) return t1; if (pt >= x2) return t2; return (t2 - t1) / (x2 - x1) * (pt - x1) + t1;' ),
basicTauDiscriminators = cms.untracked.InputTag( "hltHpsPFTauBasicDiscriminatorsForDeepTau" ),
basicTauDiscriminatorsdR03 = cms.untracked.InputTag( "hltHpsPFTauBasicDiscriminatorsdR03ForDeepTau" ),
pfTauTransverseImpactParameters = cms.InputTag( "hltHpsPFTauTransverseImpactParametersForDeepTau" ),
Prediscriminants = cms.PSet( BooleanOperator = cms.string( "and" ) )
)
|