ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
InttDeadMapv1.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file InttDeadMapv1.h
1 #ifndef G4INTT_INTTDEADMAPV1_H
2 #define G4INTT_INTTDEADMAPV1_H
3 
4 #include "InttDeadMap.h"
5 
7 
8 #include <iostream> // for cout, ostream
9 
10 class InttDeadMapv1 : public InttDeadMap
11 {
12  public:
14  {
15  }
16  ~InttDeadMapv1() override {}
17 
18  void Reset() override;
19  int isValid() const override;
20 
21  void identify(std::ostream &os = std::cout) const override;
22 
23  void addDeadChannel(PHG4CellDefs::keytype key) override;
24 
25  bool isDeadChannel(PHG4CellDefs::keytype key) const override;
27  const Map &getDeadChannels(void) const override;
28  Map &getDeadChannels(void) override;
29 
30  unsigned int size() const override { return m_DeadChannels.size(); }
31 
32  private:
34 
35  ClassDefOverride(InttDeadMapv1, 1)
36 };
37 
38 #endif /* G4INTT_INTTDEADMAPV1_H */