ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MyNewAnalysis.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MyNewAnalysis.h
1 #ifndef MYNEWANALYSIS_H__
2 #define MYNEWANALYSIS_H__
3 
4 #include <fun4all/SubsysReco.h>
5 
7 class MyNewAnalysis : public SubsysReco
8 {
9  public:
11  MyNewAnalysis(const std::string &name = "MyNewAnalysis");
12 
13  // Destructor
14  virtual ~MyNewAnalysis();
15 
17  int Init(PHCompositeNode *);
18 
21 
23  int End(PHCompositeNode *);
24 
25  private:
26 
27 };
28 
29 #endif