Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PHG4MvtxDisplayAction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PHG4MvtxDisplayAction.cc
2 
3 #include <g4main/PHG4Utils.h>
4 #include "g4main/PHG4DisplayAction.h" // for PHG4DisplayAction
5 
6 #include <Geant4/G4LogicalVolume.hh>
7 #include <Geant4/G4VisAttributes.hh>
8 
9 #include <utility> // for pair
10 
12  : PHG4DisplayAction(name)
13 {
14 }
15 
17 {
18  for (auto &it : m_VisAttVec)
19  {
20  delete it;
21  }
22  m_VisAttVec.clear();
23 }
24 
26 {
27  // check if vis attributes exist, if so someone else has set them and we do nothing
28  for (const auto &it : m_LogicalVolumeMap)
29  {
30  G4LogicalVolume *logvol = it.first;
31  if (logvol->GetVisAttributes())
32  {
33  continue;
34  }
35  G4VisAttributes *visatt = new G4VisAttributes();
36  m_VisAttVec.push_back(visatt); // for later deletion
37  if (it.second == "Carbon")
38  {
39  visatt->SetColour(0.5, 0.5, 0.5, .25);
40  }
41  else if (it.second == "MVTX_CarbonFiber$")
42  {
43  visatt->SetColour(0.4, 0.4, 0.4, 1);
44  }
45  else if (it.second == "M60J3K")
46  {
47  visatt->SetColour(0.25, 0.25, 0.25, .25);
48  }
49  else if (it.second == "WATER" || it.second == "G4_WATER")
50  {
51  visatt->SetColour(0.0, 0.5, 0.0, .25);
52  }
53  else if (it.second == "SI")
54  {
55  PHG4Utils::SetColour(visatt, "G4_Si");
56  }
57  else if (it.second == "KAPTON")
58  {
59  PHG4Utils::SetColour(visatt, "G4_KAPTON");
60  }
61  else if (it.second == "ALUMINUM")
62  {
63  PHG4Utils::SetColour(visatt, "G4_Al");
64  }
65  else if (it.second == "G4_Cu")
66  {
67  PHG4Utils::SetColour(visatt, "G4_Cu");
68  }
69  else if (it.second == "G4_POLYETHYLENE")
70  {
71  visatt->SetColour(0., 0., 0., 1.);
72  }
73  else if (it.second == "red")
74  {
75  visatt->SetColour(1., 0., 0., 1.);
76  }
77  else if (it.second == "green")
78  {
79  visatt->SetColour(0., 1., 0., 1.);
80  }
81  else if (it.second == "blue")
82  {
83  visatt->SetColour(0., 0., 1., 1.);
84  }
85  else if (it.second == "black")
86  {
87  visatt->SetColour(0., 0., 0., 1.);
88  }
89  else if (it.second == "white")
90  {
91  visatt->SetColour(1., 1., 1., 1.);
92  }
93  else
94  {
95  visatt->SetColour(.2, .2, .7, .25);
96  }
97  visatt->SetVisibility(true);
98  visatt->SetForceSolid(true);
99  logvol->SetVisAttributes(visatt);
100  }
101  return;
102 }