Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002 from RecoTauTag.RecoTau.TauDiscriminatorTools import noPrediscriminants
00003
00004 """
00005 Produces a PFTauDiscriminator (Association<PFTau, float>) that maps
00006 PFTaus with the decay mode as determined by the PFTauDecayMode object.
00007 The mapping of the index to real decay modes is given in
00008 DataFormats/TauReco/interface/PFTauDecayMode.h
00009 """
00010
00011 pfTauDecayModeIndexProducer = cms.EDProducer("PFRecoTauDecayModeIndexProducer",
00012 PFTauProducer = cms.InputTag("pfRecoTauProducer"),
00013 PFTauDecayModeProducer = cms.InputTag("pfRecoTauDecayModeProducer"),
00014
00015
00016
00017 Prediscriminants = noPrediscriminants,
00018 )