ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4RICHDisplayAction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4RICHDisplayAction.cc
2 
3 #include <g4main/PHG4DisplayAction.h> // for PHG4DisplayAction
4 
5 #include <Geant4/G4Colour.hh>
6 #include <Geant4/G4LogicalVolume.hh>
7 #include <Geant4/G4VisAttributes.hh>
8 
9 #include <TSystem.h>
10 
11 #include <iostream>
12 #include <utility> // for pair
13 
14 using namespace std;
15 
17  : PHG4DisplayAction(name)
18 {
19 }
20 
22 {
23  for (auto &it : m_VisAttVec)
24  {
25  delete it;
26  }
27  m_VisAttVec.clear();
28 }
29 
31 {
32  // check if vis attributes exist, if so someone else has set them and we do nothing
33  for (auto it : m_LogicalVolumeMap)
34  {
35  G4LogicalVolume *logvol = it.first;
36  if (logvol->GetVisAttributes())
37  {
38  continue;
39  }
40  G4VisAttributes *visatt = new G4VisAttributes();
41  visatt->SetVisibility(true);
42  visatt->SetForceSolid(true);
43  m_VisAttVec.push_back(visatt); // for later deletion
44  if (it.second == "HBD")
45  {
46  visatt->SetColour(G4Colour::Red());
47  }
48  else if (it.second == "Mirror")
49  {
50  visatt->SetColour(G4Colour::Green());
52  }
53  else if (it.second == "Sector")
54  {
55  visatt->SetColour(G4Colour::White());
56  visatt->SetForceWireframe(true);
58  }
59  else if (it.second == "Window")
60  {
61  visatt->SetColour(G4Colour::Yellow());
63  }
64  else
65  {
66  cout << "unknown logical volume " << it.second << endl;
67  gSystem->Exit(1);
68  }
69  logvol->SetVisAttributes(visatt);
70  }
71  return;
72 }