Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DeadHotMapLoader.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file DeadHotMapLoader.h
1 // $Id: $
2 
11 #ifndef CALORECO_DEADHOTMAPLOADER_H
12 #define CALORECO_DEADHOTMAPLOADER_H
13 
14 #include <fun4all/SubsysReco.h>
15 
16 #include <string>
17 
18 class PHCompositeNode;
19 class CDBTTree;
20 
25 {
26  public:
27  explicit DeadHotMapLoader(const std::string& detector);
28 
29  ~DeadHotMapLoader() override {}
30 
31  int InitRun(PHCompositeNode* topNode) override;
32 
33  const std::string& detector() const
34  {
35  return m_detector;
36  }
37 
38  void detector(const std::string& detector)
39  {
41  }
42 
43  private:
45  CDBTTree *m_CDBTTree = nullptr;
46 };
47 
48 #endif