ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RawClusterDeadAreaMask.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RawClusterDeadAreaMask.h
1 #ifndef CALORECO_RAWCLUSTERDEADAREAMASK_H
2 #define CALORECO_RAWCLUSTERDEADAREAMASK_H
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <string>
7 
8 class PHCompositeNode;
10 class RawTowerContainer;
12 class RawTowerDeadMap;
13 
15 {
16  public:
17  explicit RawClusterDeadAreaMask(const std::string &name = "RawClusterDeadAreaMask");
18 
19  int InitRun(PHCompositeNode *topNode) override;
20  int process_event(PHCompositeNode *topNode) override;
21  int End(PHCompositeNode *topNode) override;
22 
25  {
27  }
28 
29  void detector(const std::string &detector)
30  {
32  }
33 
34  private:
35  void CreateNodeTree(PHCompositeNode *topNode);
36 
37  std::string m_detector;
38 
41 
46 };
47 
48 #endif