Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:16:46

0001 #ifndef NODEDUMP_DUMPER_H
0002 #define NODEDUMP_DUMPER_H
0003 
0004 #include <fun4all/SubsysReco.h>
0005 
0006 #include <string>
0007 
0008 class PHCompositeNode;
0009 class PHNodeDump;
0010 
0011 class Dumper : public SubsysReco
0012 {
0013  public:
0014   explicit Dumper(const std::string &name = "DUMPER");
0015   ~Dumper() override;
0016   int End(PHCompositeNode *topNode) override;
0017   int process_event(PHCompositeNode *topNode) override;
0018   void SetOutDir(const std::string &outdir);
0019   void SetPrecision(const int digits);
0020   int AddIgnore(const std::string &name);
0021   int Select(const std::string &name);
0022 
0023  private:
0024   PHNodeDump *nodedump;
0025 };
0026 
0027 #endif