Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4OHCalDisplayAction.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4OHCalDisplayAction.h
1 // Tell emacs that this is a C++ source
2 // -*- C++ -*-.
3 #ifndef G4OHCAL_PHG4OHCALDISPLAYACTION_H
4 #define G4OHCAL_PHG4OHCALDISPLAYACTION_H
5 
7 
8 #include <set>
9 #include <string> // for string
10 #include <vector>
11 
12 class G4LogicalVolume;
13 class G4VisAttributes;
14 class G4VPhysicalVolume;
15 
17 {
18  public:
19  explicit PHG4OHCalDisplayAction(const std::string &name);
20 
21  ~PHG4OHCalDisplayAction() override;
22 
23  void ApplyDisplayAction(G4VPhysicalVolume *physvol) override;
25  void AddScintiVolume(G4LogicalVolume *vol) { m_ScintiLogVolSet.insert(vol); }
26  void AddSteelVolume(G4LogicalVolume *vol) { m_SteelVol = vol; }
27  void AddChimSteelVolume(G4LogicalVolume *vol) { m_ChimSteelVol = vol; }
28 
29  private:
31  G4LogicalVolume *m_SteelVol = nullptr;
32  G4LogicalVolume *m_ChimSteelVol = nullptr;
33  std::vector<G4VisAttributes *> m_VisAttVec;
34  std::vector<G4VisAttributes *> m_VisAttVec2;
35  std::set<G4LogicalVolume *> m_ScintiLogVolSet;
36 };
37 
38 #endif // G4OHCAL_PHG4OHCALDISPLAYACTION_H