ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4InttSteppingAction.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4InttSteppingAction.h
1 // Tell emacs that this is a C++ source
2 // This file is really -*- C++ -*-.
3 #ifndef G4INTT_PHG4INTTSTEPPINGACTION_H
4 #define G4INTT_PHG4INTTSTEPPINGACTION_H
5 
7 
8 #include <map>
9 #include <vector>
10 #include <utility> // for pair
11 
12 class G4Step;
13 class PHCompositeNode;
14 class PHG4InttDetector;
15 class PHG4Hit;
16 class PHG4HitContainer;
17 class PHG4Shower;
19 
21 {
22  public:
23  PHG4InttSteppingAction(PHG4InttDetector *, const PHParametersContainer *parameters, const std::pair<std::vector<std::pair<int, int>>::const_iterator, std::vector<std::pair<int, int>>::const_iterator> &layer_begin_end);
24 
25  ~PHG4InttSteppingAction() override;
26 
27  bool UserSteppingAction(const G4Step *, bool) override;
28 
29  void SetInterfacePointers(PHCompositeNode *) override;
30 
31  private:
34 
42 
43  std::map<int, int> m_InttToTrackerLayerMap;
44  std::map<int, int> m_LadderTypeMap;
45  std::map<int, double> m_StripYMap;
46  std::map<int, std::pair<double, double>> m_StripZMap;
47  std::map<int, int> m_nStripsPhiCell;
48  std::map<int, std::pair<int, int>> m_nStripsZSensor;
49 
50  std::map<int, int> m_IsActiveMap;
51  std::map<int, int> m_IsBlackHoleMap;
52 };
53 
54 #endif // G4INTT_PHG4INTTSTEPPINGACTION_H