EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4HeadReco.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4HeadReco.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 #ifndef G4MAIN_PHG4HEADRECO_H
4 #define G4MAIN_PHG4HEADRECO_H
5 
6 #include <fun4all/SubsysReco.h>
7 
8 #include <string> // for string
9 
10 class PHCompositeNode;
11 
12 class PHG4HeadReco: public SubsysReco
13 {
14  public:
15  PHG4HeadReco(const std::string &name="PHG4HeadReco");
16  ~PHG4HeadReco() override{}
17  int Init(PHCompositeNode *topNode) override;
18  int process_event(PHCompositeNode *topNode) override;
19 
20  protected:
21 
22  int evtseq;
23 
24 };
25 
26 #endif