Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:19:21

0001 // Tell emacs that this is a C++ source
0002 //  -*- C++ -*-.
0003 #ifndef G4MAIN_PHG4HITREADBACK_H
0004 #define G4MAIN_PHG4HITREADBACK_H
0005 
0006 #include <fun4all/SubsysReco.h>
0007 
0008 #include <string>  // for string
0009 
0010 class PHCompositeNode;
0011 
0012 class PHG4HitReadBack : public SubsysReco
0013 {
0014  public:
0015   PHG4HitReadBack(const std::string &name = "PHG4HITREADBACK");
0016   int InitRun(PHCompositeNode *topNode) override;
0017   int process_event(PHCompositeNode *topNode) override;
0018 
0019  protected:
0020 };
0021 
0022 #endif