Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltPfDeepFlavourJetTags = cms.EDProducer("DeepFlavourONNXJetTagsProducer",
0004     flav_names = cms.vstring(
0005         'probb',
0006         'probbb',
0007         'problepb',
0008         'probc',
0009         'probuds',
0010         'probg'
0011     ),
0012     input_names = cms.vstring(
0013         'input_1',
0014         'input_2',
0015         'input_3',
0016         'input_4',
0017         'input_5'
0018     ),
0019     mightGet = cms.optional.untracked.vstring,
0020     model_path = cms.FileInPath('RecoBTag/Combined/data/DeepFlavourV02_PhaseII/DeepJet_retraining_phase2_new_inputs.onnx'),
0021     output_names = cms.vstring(),
0022     src = cms.InputTag("hltPfDeepFlavourTagInfos")
0023 )