ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DumpRunHeader.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file DumpRunHeader.h
1 #ifndef NODEDUMP_DUMPRUNHEADER_H
2 #define NODEDUMP_DUMPRUNHEADER_H
3 
4 #include <DumpObject.h>
5 
6 #include <string>
7 
8 class PHNode;
9 
10 class DumpRunHeader : public DumpObject
11 {
12  public:
13  DumpRunHeader(const std::string &NodeName);
14  ~DumpRunHeader() override {}
15 
16  protected:
17  int process_Node(PHNode *mynode) override;
18  int node_written = 0;
19 };
20 
21 #endif