CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/RecoTauTag/HLTProducers/python/PFTauVertexSelector_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 PFTauVertexSelector = cms.EDFilter("PFTauVertexSelector",
00004     # Tau collection
00005     tauSrc = cms.InputTag('hltPFTaus'),
00006 
00007     # Use vertex collection for x/y vertex position
00008     useVertex = cms.bool(True),
00009 
00010     # Vertex collection
00011     vertexSrc = cms.InputTag("hltPixelVertices"),
00012     
00013     # Use beamspot as fallback for x/y vertex position
00014     useBeamSpot = cms.bool(True),
00015 
00016     # Beamspot collection
00017     beamSpotSrc = cms.InputTag("hltBeamSpot"),
00018     
00019     # use leading track to determine z vertex position
00020     useLeadingTrack = cms.bool(False),
00021     
00022     # Track collection
00023     trackSrc =cms.VInputTag(cms.InputTag("hltIter4Merged"),),
00024     
00025     # use leading RecoCandidate to determine z vertex position
00026     useLeadingRecoCandidate = cms.bool(False),
00027     
00028     # RecoCandidate(e.g. lepton) collection
00029     recoCandidateSrc = cms.VInputTag(cms.InputTag("hltL3MuonCandidates"),),
00030     
00031     # use leading electron from TriggerObjectsWithRefs to determine z vertex position
00032     useTriggerFilterElectrons = cms.bool(False),
00033     
00034     # electron TriggerObjectsWithRefs collection
00035     triggerFilterElectronsSrc = cms.InputTag("hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoL1JetTrackIsoFilter"),
00036     
00037     # use leading muon from TriggerObjectsWithRefs to determine z vertex position
00038     useTriggerFilterMuons = cms.bool(False),
00039     
00040     # muon TriggerObjectsWithRefs collection
00041     triggerFilterMuonsSrc = cms.InputTag("hltSingleMuIsoL3IsoFiltered15"),
00042     
00043     # max dZ distance to primary vertex
00044     dZ = cms.double(0.2),
00045 
00046     # filter events with at least N taus from PV
00047     filterOnNTaus = cms.uint32(0),
00048 )