Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RawClusterDeadHotMask.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RawClusterDeadHotMask.h
1 #ifndef CALORECO_RAWCLUSTERDEADHOTMASK_H
2 #define CALORECO_RAWCLUSTERDEADHOTMASK_H
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <string>
7 
8 class PHCompositeNode;
10 class RawTowerContainer;
12 class RawTowerDeadMap;
13 class TowerInfoContainer;
14 
16 {
17  public:
18  explicit RawClusterDeadHotMask(const std::string &name = "RawClusterDeadHotMask");
19 
20  int InitRun(PHCompositeNode *topNode) override;
21  int process_event(PHCompositeNode *topNode) override;
22  int End(PHCompositeNode *topNode) override;
23 
26  {
28  }
29 
31  {
33  }
34 
35  void set_UseTowerInfo(const bool useMode)
36  {
37  m_UseTowerInfo = useMode;
38  }
39 
40  private:
41  void CreateNodeTree(PHCompositeNode *topNode);
42 
44 
47 
54  bool m_UseTowerInfo = true;
55 };
56 
57 #endif