CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoTauTag/RecoTau/python/PFRecoTauQualityCuts_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # A set of quality cuts used for the PFTaus.  Note that the quality cuts are
00004 # different for the signal and isolation regions.  (Currently, only in Nhits)
00005 
00006 PFTauQualityCuts = cms.PSet(
00007       signalQualityCuts = cms.PSet(
00008          minTrackPt                   = cms.double(0.5),  # filter PFChargedHadrons below given pt
00009          maxTrackChi2                 = cms.double(100.), # require track Chi2
00010          maxTransverseImpactParameter = cms.double(0.03), # w.r.t. PV
00011          maxDeltaZ                    = cms.double(0.2),  # w.r.t. PV
00012          minTrackPixelHits            = cms.uint32(0),    # pixel-only hits (note that these cuts are turned off, 
00013                                                           # the tracking cuts might be higher)
00014          minTrackHits                 = cms.uint32(3),    # total track hits
00015          minGammaEt                   = cms.double(0.5),  # filter PFgammas below given Pt
00016          useTracksInsteadOfPFHadrons  = cms.bool(False),  # if true, use generalTracks, instead of PFChargedHadrons
00017       ),
00018       isolationQualityCuts = cms.PSet(
00019          minTrackPt                   = cms.double(1.0), 
00020          maxTrackChi2                 = cms.double(100.),
00021          maxTransverseImpactParameter = cms.double(0.03),
00022          maxDeltaZ                    = cms.double(0.2),
00023          minTrackPixelHits            = cms.uint32(0),
00024          minTrackHits                 = cms.uint32(8),
00025          minGammaEt                   = cms.double(1.5),
00026          useTracksInsteadOfPFHadrons  = cms.bool(False),
00027       )
00028 )
00029 
00030