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 
23 
24 // Forward declarations
25 namespace edm {
26  class ParameterSet;
27  class Event;
28 }
29 
30 namespace reco {
31  class PFTau;
32  class PFJet;
33 }
34 
35 namespace reco { namespace tau {
36 
38  public:
39  enum Algorithm {
43  };
44 
54  void setEvent(const edm::Event& evt);
55  private:
56  std::vector<reco::VertexRef> vertices_;
59 };
60 
61 } /* tau */ } /* reco */
62 
63 #endif /* end of include guard: RecoTauTag_RecoTau_RecoTauVertexAssociator_h */
reco::VertexRef associatedVertex(const PFJet &tau) const
void setEvent(const edm::Event &evt)
Load the vertices from the event.
Jets made from PFObjects.
Definition: PFJet.h:22
RecoTauVertexAssociator(const edm::ParameterSet &pset)
std::vector< reco::VertexRef > vertices_