ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHInitVertexing.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHInitVertexing.h
1 
7 #ifndef TRACKRECO_PHINITVERTEXING_H
8 #define TRACKRECO_PHINITVERTEXING_H
9 
10 // PHENIX includes
11 #include <fun4all/SubsysReco.h>
12 
13 // STL includes
14 #include <string>
15 
16 // forward declarations
17 class PHCompositeNode;
18 
21 class SvtxVertexMap;
22 
28 {
29  public:
30  PHInitVertexing(const std::string &name = "PHInitVertexing");
31  ~PHInitVertexing() override {}
32 
33  int InitRun(PHCompositeNode *topNode) override;
34  int process_event(PHCompositeNode *topNode) override;
35 
36  protected:
37 
40  virtual int Setup(PHCompositeNode *topNode);
41 
44  virtual int Process(PHCompositeNode *topNode) = 0;
45 
46 
50 
51  private:
53  int CreateNodes(PHCompositeNode *topNode);
54 
56  int GetNodes(PHCompositeNode *topNode);
57 };
58 
59 #endif