Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-21 04:46:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltHpsPFTauDeepTauProducer = cms.EDProducer( "DeepTauId",
0004     electrons = cms.InputTag( "default" ),
0005     muons = cms.InputTag( "default" ),
0006     taus = cms.InputTag( "hltHpsPFTauProducer" ),
0007     pfcands = cms.InputTag( "hltParticleFlowTmp" ),
0008     vertices = cms.InputTag( "hltPhase2PixelVertices" ),
0009     rho = cms.InputTag( "hltFixedGridRhoProducerFastjetAllTau" ),
0010     graph_file = cms.vstring( 'core:RecoTauTag/TrainingFiles/data/DeepTauId/deepTau_2026v2p5_core.pb',
0011       'inner:RecoTauTag/TrainingFiles/data/DeepTauId/deepTau_2026v2p5_inner.pb',
0012       'outer:RecoTauTag/TrainingFiles/data/DeepTauId/deepTau_2026v2p5_outer.pb' ),
0013     mem_mapped = cms.bool( False ),
0014     year = cms.uint32( 2026 ),
0015     version = cms.uint32( 2 ),
0016     sub_version = cms.uint32( 5 ),
0017     debug_level = cms.int32( 0 ),
0018     disable_dxy_pca = cms.bool( True ),
0019     disable_hcalFraction_workaround = cms.bool( False ),
0020     disable_CellIndex_workaround = cms.bool( False ),
0021     save_inputs = cms.bool( False ),
0022     is_online = cms.bool( True ),
0023     VSeWP = cms.vstring( '-1.' ),
0024     VSmuWP = cms.vstring( '-1.' ),
0025     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;',
0026       '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;',
0027       '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;',
0028       '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;' ),
0029     basicTauDiscriminators = cms.untracked.InputTag( "hltHpsPFTauBasicDiscriminatorsForDeepTau" ),
0030     basicTauDiscriminatorsdR03 = cms.untracked.InputTag( "hltHpsPFTauBasicDiscriminatorsdR03ForDeepTau" ),
0031     pfTauTransverseImpactParameters = cms.InputTag( "hltHpsPFTauTransverseImpactParametersForDeepTau" ),
0032     Prediscriminants = cms.PSet(  BooleanOperator = cms.string( "and" ) )
0033 )