Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:16:41

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