EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4JLeicVTXDisplayAction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4JLeicVTXDisplayAction.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 
30 void G4JLeicVTXDisplayAction::ApplyDisplayAction(G4VPhysicalVolume *physvol)
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 == "Absorber")
45  {
46  visatt->SetColour(G4Colour::Gray());
47  }
48  else if (it.second == "FHcalEnvelope")
49  {
50  visatt->SetVisibility(false);
51  }
52  else if (it.second == "Scintillator")
53  {
54  visatt->SetColour(G4Colour::Gray());
55  }
56  else if (it.second == "SingleScintillator")
57  {
58  visatt->SetColour(G4Colour::Cyan());
59  }
60  else
61  {
62  cout << "unknown logical volume " << it.second << endl;
63  gSystem->Exit(1);
64  }
65  logvol->SetVisAttributes(visatt);
66  }
67  return;
68 }