Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:51

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef G4CALO_G4HITSHIFT_H
0004 #define G4CALO_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   g4hitshift(const std::string &name = "g4hitshift");
0016 
0017   ~g4hitshift() override{};
0018 
0019   int process_event(PHCompositeNode *topNode) override;
0020 
0021  private:
0022 };
0023 
0024 #endif  // G4CALO_G4HITSHIFT_H