Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:14:59

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef G4HITSHIFT_H
0004 #define G4HITSHIFT_H
0005 
0006 #include <fun4all/SubsysReco.h>
0007 
0008 #include <string>
0009 
0010 class PHCompositeNode;
0011 
0012 class g4hitshift : public SubsysReco
0013 {
0014  public:
0015 
0016   g4hitshift(const std::string &name = "g4hitshift");
0017 
0018   ~g4hitshift() override;
0019 
0020   int Init(PHCompositeNode *topNode) override;
0021   int InitRun(PHCompositeNode *topNode) override;
0022   int process_event(PHCompositeNode *topNode) override;
0023   int ResetEvent(PHCompositeNode *topNode) override;
0024   int EndRun(const int runnumber) override;
0025   int End(PHCompositeNode *topNode) override;
0026   int Reset(PHCompositeNode * /*topNode*/) override;
0027 
0028   void Print(const std::string &what = "ALL") const override;
0029 
0030  private:
0031 };
0032 
0033 #endif // G4HITSHIFT_H