Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FlagHandler.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FlagHandler.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 #ifndef FFAMODULES_FLAGHANDLER_H
4 #define FFAMODULES_FLAGHANDLER_H
5 
6 #include <fun4all/SubsysReco.h>
7 
8 #include <string>
9 
10 class PHCompositeNode;
11 
12 class FlagHandler : public SubsysReco
13 {
14  public:
15  FlagHandler(const std::string &name = "FlagHandler");
16 
17  ~FlagHandler() override {}
18 
22  int InitRun(PHCompositeNode *topNode) override;
23 
25  int End(PHCompositeNode *topNode) override;
26 
27  void Print(const std::string &what = "ALL") const override;
28 
29  private:
30 };
31 
32 #endif // FFAMODULES_FLAGHANDLER_H