ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
PHG4CrystalCalorimeterDisplayAction.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file PHG4CrystalCalorimeterDisplayAction.cc
1
#include "
PHG4CrystalCalorimeterDisplayAction.h
"
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
16
PHG4CrystalCalorimeterDisplayAction::PHG4CrystalCalorimeterDisplayAction
(
const
std::string &
name
)
17
:
PHG4DisplayAction
(name)
18
{
19
}
20
21
PHG4CrystalCalorimeterDisplayAction::~PHG4CrystalCalorimeterDisplayAction
()
22
{
23
for
(
auto
&
it
:
m_VisAttVec
)
24
{
25
delete
it
;
26
}
27
m_VisAttVec.clear();
28
}
29
30
void
PHG4CrystalCalorimeterDisplayAction::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 ==
"CarbonShell"
)
45
{
46
visatt->
SetColour
(
G4Colour::Black
());
47
}
48
else
if
(
it
.second ==
"Crystal"
)
49
{
50
visatt->
SetColour
(
G4Colour::Cyan
());
51
}
52
else
if
(
it
.second ==
"Envelope"
)
53
{
54
visatt->
SetVisibility
(
false
);
55
}
56
else
if
(
it
.second ==
"Invisible"
)
57
{
58
visatt->
SetVisibility
(
false
);
59
}
60
else
if
(
it
.second ==
"TwoByTwo"
)
61
{
62
visatt->
SetColour
(
G4Colour::Gray
());
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
}
fun4all_eicdetectors
blob
master
simulation
g4simulation
g4eiccalos
PHG4CrystalCalorimeterDisplayAction.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:47
using
1.8.2 with
ECCE GitHub integration