CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoTauTag/RecoTau/python/PFRecoTauDiscriminationAgainstMuon2_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoTauTag.RecoTau.TauDiscriminatorTools import requireLeadTrack
00004 
00005 PFRecoTauDiscriminationAgainstMuon2 = cms.EDProducer("PFRecoTauDiscriminationAgainstMuon2",
00006     
00007     # tau collection to discriminate
00008     PFTauProducer = cms.InputTag('pfRecoTauProducer'),
00009 
00010     # Require leading pion ensures that:
00011     #  1) these is at least one track above threshold (0.5 GeV) in the signal cone
00012     #  2) a track OR a pi-zero in the signal cone has pT > 5 GeV
00013     Prediscriminants = requireLeadTrack,
00014 
00015     # algorithm parameters
00016     discriminatorOption = cms.string('loose'), # available options are: 'loose', 'medium', 'tight' and 'custom'
00017     HoPMin = cms.double(0.2),
00018     maxNumberOfMatches = cms.int32(0), # negative value would turn off this cut in case of 'custom' discriminator 
00019     doCaloMuonVeto = cms.bool(False),
00020     maxNumberOfHitsLast2Stations = cms.int32(0), # negative value would turn off this cut in case of 'custom' discriminator 
00021 
00022     # optional collection of muons to check for overlap with taus
00023     srcMuons = cms.InputTag('muons'),
00024     dRmuonMatch = cms.double(0.3),
00025 
00026     verbosity = cms.int32(0)
00027 )
00028 
00029