ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RawTowerDeadTowerInterp.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RawTowerDeadTowerInterp.h
1 #ifndef CALORECO_RAWTOWERDEADTOWERINTERP_H
2 #define CALORECO_RAWTOWERDEADTOWERINTERP_H
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <string>
7 
8 class PHCompositeNode;
11 class RawTowerDeadMap;
12 
15 {
16  public:
17  RawTowerDeadTowerInterp(const std::string &name = "RawTowerDeadTowerInterp");
19  {
20  }
21 
22  int InitRun(PHCompositeNode *topNode) override;
23  int process_event(PHCompositeNode *topNode) override;
24  int End(PHCompositeNode *topNode) override;
25 
26  void
27  detector(const std::string &d)
28  {
29  m_detector = d;
30  }
31 
32  protected:
33  void
34  CreateNodes(PHCompositeNode *topNode);
35 
39 
40  std::string m_detector;
41 
43 };
44 
45 #endif