Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
g4hitshift.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file g4hitshift.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 #ifndef G4HITSHIFT_H
4 #define G4HITSHIFT_H
5 
6 #include <fun4all/SubsysReco.h>
7 
8 #include <string>
9 
10 class PHCompositeNode;
11 
12 class g4hitshift : public SubsysReco
13 {
14  public:
15 
16  g4hitshift(const std::string &name = "g4hitshift");
17 
18  ~g4hitshift() override;
19 
20  int Init(PHCompositeNode *topNode) override;
21  int InitRun(PHCompositeNode *topNode) override;
22  int process_event(PHCompositeNode *topNode) override;
23  int ResetEvent(PHCompositeNode *topNode) override;
24  int EndRun(const int runnumber) override;
25  int End(PHCompositeNode *topNode) override;
26  int Reset(PHCompositeNode * /*topNode*/) override;
27 
28  void Print(const std::string &what = "ALL") const override;
29 
30  private:
31 };
32 
33 #endif // G4HITSHIFT_H