CMS 3D CMS Logo

HPSPFTauProducerPuppi_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from L1Trigger.Phase2L1Taus.hpspfTauProducer_cfi import hpspfTauProducer as _hpspfTauProducer
4 l1tHPSPFTauProducerPuppi = _hpspfTauProducer.clone(
5  srcL1PFCands = "l1tLayer1:Puppi",
6  signalQualityCuts = dict(
7  chargedHadron = dict(
8  maxDz = 1.e+3
9  ),
10  muon = dict(
11  maxDz = 1.e+3
12  ),
13  electron = dict(
14  maxDz = 1.e+3
15  )
16  ),
17  isolationQualityCuts = dict(
18  chargedHadron = dict(
19  maxDz = 1.e+3
20  ),
21  muon = dict(
22  maxDz = 1.e+3
23  ),
24  electron = dict(
25  maxDz = 1.e+3
26  )
27  )
28 )