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