CMS 3D CMS Logo

deepMETSonicProducer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoMET.METPUSubtraction.deepMETSonicProducer_cfi import deepMETSonicProducer as _deepMETSonicProducer
4 
5 deepMETSonicProducer = _deepMETSonicProducer.clone(
6  Client = dict(
7  timeout = 300,
8  mode = "Async",
9  modelName = "deepmet",
10  modelConfigPath = "RecoMET/METPUSubtraction/data/models/deepmet/config.pbtxt",
11  # version "1" is the resolutionTune
12  # version "2" is the responeTune
13  modelVersion = "1",
14  ),
15  pf_src = "packedPFCandidates",
16 )