ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SyncReco.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file SyncReco.h
1 #ifndef FFAMODULES_SYNCRECO_H
2 #define FFAMODULES_SYNCRECO_H
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <string>
7 
8 class PHCompositeNode;
9 
10 class SyncReco : public SubsysReco
11 {
12  public:
13  SyncReco(const std::string &name = "SYNC");
14  virtual ~SyncReco() {}
15 
16  int Init(PHCompositeNode *topNode);
17  int InitRun(PHCompositeNode *topNode);
18  int process_event(PHCompositeNode *topNode);
19 
20  protected:
21  int CreateNodeTree(PHCompositeNode *topNode);
22 };
23 
24 #endif /* FFAMODULES_SYNCRECO_H */