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
G4JLeicDIRCDisplayAction.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file G4JLeicDIRCDisplayAction.cc
1
#include "
G4JLeicDIRCDisplayAction.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
G4JLeicDIRCDisplayAction::G4JLeicDIRCDisplayAction
(
const
std::string &
name
)
17
:
PHG4DisplayAction
(name)
18
{
19
}
20
21
G4JLeicDIRCDisplayAction::~G4JLeicDIRCDisplayAction
()
22
{
23
for
(
auto
&
it
:
m_VisAttVec
)
24
{
25
delete
it
;
26
}
27
m_VisAttVec.clear();
28
}
29
30
void
G4JLeicDIRCDisplayAction::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
}
fun4all_eicdetectors
blob
master
simulation
g4simulation
g4jleic
G4JLeicDIRCDisplayAction.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:47
using
1.8.2 with
ECCE GitHub integration