File indexing completed on 2023-03-17 11:21:56
0001 import FWCore.ParameterSet.Config as cms
0002 from RecoTauTag.RecoTau.TauDiscriminatorTools import noPrediscriminants
0003
0004 """
0005 Produces a PFTauDiscriminator (Association<PFTau, float>) that maps
0006 PFTaus with the decay mode as determined by the PFTauDecayMode object.
0007 The mapping of the index to real decay modes is given in
0008 DataFormats/TauReco/interface/PFTauDecayMode.h
0009 """
0010
0011 pfTauDecayModeIndexProducer = cms.EDProducer("PFRecoTauDecayModeIndexProducer",
0012 PFTauProducer = cms.InputTag("pfRecoTauProducer"),
0013 PFTauDecayModeProducer = cms.InputTag("pfRecoTauDecayModeProducer"),
0014
0015
0016
0017 Prediscriminants = noPrediscriminants,
0018 )