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