File indexing completed on 2025-08-05 08:17:38
0001
0002
0003 #ifndef G4CALO_G4HITSHIFTHCAL_H
0004 #define G4CALO_G4HITSHIFTHCAL_H
0005
0006 #include <fun4all/SubsysReco.h>
0007
0008 #include <string>
0009
0010 class PHCompositeNode;
0011
0012 class g4hitshifthcal : public SubsysReco
0013 {
0014 public:
0015
0016 g4hitshifthcal(const std::string &name = "g4hitshifthcal");
0017
0018 ~g4hitshifthcal() override = default;
0019
0020 int process_event(PHCompositeNode *topNode) override;
0021
0022 private:
0023 };
0024
0025 #endif