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