ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RetowerCEMC.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RetowerCEMC.h
1 #ifndef JETBACKGROUND_RETOWERCEMC_H
2 #define JETBACKGROUND_RETOWERCEMC_H
3 
4 //===========================================================
8 //===========================================================
9 
10 #include <fun4all/SubsysReco.h>
11 
12 // system includes
13 #include <string>
14 #include <vector>
15 
16 // forward declarations
17 class PHCompositeNode;
18 
26 class RetowerCEMC : public SubsysReco
27 {
28  public:
29  RetowerCEMC(const std::string &name = "RetowerCEMC");
30  ~RetowerCEMC() override {}
31 
32  int InitRun(PHCompositeNode *topNode) override;
33  int process_event(PHCompositeNode *topNode) override;
34 
35  private:
36  int CreateNode(PHCompositeNode *topNode);
37 
38  int _NETA;
39  int _NPHI;
40  std::vector<std::vector<float> > _EMCAL_RETOWER_E;
41 };
42 
43 #endif