CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecoTauVertexAssociator.h
Go to the documentation of this file.
1 #ifndef RecoTauTag_RecoTau_RecoTauVertexAssociator_h
2 #define RecoTauTag_RecoTau_RecoTauVertexAssociator_h
3 
4 /* RecoTauVertexAssociator
5  *
6  * Authors: Evan K. Friis, Christian Veelken, UC Davis
7  * Michalis Bachtis, UW Madison
8  *
9  * The associatedVertex member function retrieves the vertex from the event
10  * associated to a given tau. This class is configured using a cms.PSet.
11  *
12  * The required arguments are:
13  * o primaryVertexSrc - InputTag with the vertex collection
14  * o useClosestPV - Use the "closest to lead track in z" to find the vertex.
15  *
16  * The setEvent method must be called at least once per event.
17  *
18  */
19 
26 
29 #include <map>
30 
31 // Forward declarations
32 namespace edm {
33  class ParameterSet;
34  class Event;
35 }
36 
37 namespace reco {
38  class PFTau;
39  class PFJet;
40 }
41 
42 namespace reco { namespace tau {
43 
45  public:
46  enum Algorithm {
51  };
52 
63  void setEvent(const edm::Event& evt);
65  // std::map<const PFJet*,reco::VertexRef> Employees;
66  // containers for holding vertices associated to jets
67  std::map<const reco::PFJet*,reco::VertexRef> *JetToVertexAssociation;
69 
70 
71  private:
72  std::vector<reco::VertexRef> vertices_;
75  //PJ adding quality cuts
78 
80 
81 };
82 
83 } /* tau */ } /* reco */
84 
85 #endif /* end of include guard: RecoTauTag_RecoTau_RecoTauVertexAssociator_h */
reco::VertexRef associatedVertex(const PFJet &tau) const
std::map< const reco::PFJet *, reco::VertexRef > * JetToVertexAssociation
void setEvent(const edm::Event &evt)
Load the vertices from the event.
reco::TrackBaseRef getLeadTrack(const PFJet &jet) const
Jets made from PFObjects.
Definition: PFJet.h:21
RecoTauVertexAssociator(const edm::ParameterSet &pset, edm::ConsumesCollector &&iC)
std::vector< reco::VertexRef > vertices_
edm::EDGetTokenT< reco::VertexCollection > vx_token