EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Dumper.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file Dumper.h
1 #ifndef NODEDUMP_DUMPER_H
2 #define NODEDUMP_DUMPER_H
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <string>
7 
8 class PHCompositeNode;
9 class PHNodeDump;
10 
11 class Dumper : public SubsysReco
12 {
13  public:
14  Dumper(const std::string &name = "DUMPER");
15  ~Dumper() override;
16  int End(PHCompositeNode *topNode) override;
17  int process_event(PHCompositeNode *topNode) override;
18  void SetOutDir(const std::string &outdir);
19  void SetPrecision(const int digits);
20  int AddIgnore(const std::string &name);
21  int Select(const std::string &name);
22 
23  private:
25 };
26 
27 #endif