Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:53

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       # This discriminator automatically handles cases where the tau is 
0016       # empty, or has no lead track.  No prediscriminants are needed.
0017       Prediscriminants = noPrediscriminants,
0018 )