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
RE05TrackerHit.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file RE05TrackerHit.cc
1
//
2
// ********************************************************************
3
// * License and Disclaimer *
4
// * *
5
// * The Geant4 software is copyright of the Copyright Holders of *
6
// * the Geant4 Collaboration. It is provided under the terms and *
7
// * conditions of the Geant4 Software License, included in the file *
8
// * LICENSE and available at http://cern.ch/geant4/license . These *
9
// * include a list of copyright holders. *
10
// * *
11
// * Neither the authors of this software system, nor their employing *
12
// * institutes,nor the agencies providing financial support for this *
13
// * work make any representation or warranty, express or implied, *
14
// * regarding this software system or assume any liability for its *
15
// * use. Please see the license in the file LICENSE and URL above *
16
// * for the full disclaimer and the limitation of liability. *
17
// * *
18
// * This code implementation is the result of the scientific and *
19
// * technical work of the GEANT4 collaboration. *
20
// * By using, copying, modifying or distributing the software (or *
21
// * any work based on the software) you agree to acknowledge its *
22
// * use in resulting scientific publications, and indicate your *
23
// * acceptance of all terms of the Geant4 Software license. *
24
// ********************************************************************
25
//
26
//
29
//
30
31
#include "
RE05TrackerHit.hh
"
32
#include "
G4VVisManager.hh
"
33
#include "
G4Circle.hh
"
34
#include "
G4Colour.hh
"
35
#include "
G4VisAttributes.hh
"
36
#include "
G4UnitsTable.hh
"
37
#include "
G4AttValue.hh
"
38
#include "
G4AttDef.hh
"
39
#include "
G4AttCheck.hh
"
40
41
G4ThreadLocal
G4Allocator<RE05TrackerHit>
*
RE05TrackerHitAllocator
=0;
42
std::map<G4String,G4AttDef>
RE05TrackerHit::fAttDefs
;
43
44
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
45
46
RE05TrackerHit::RE05TrackerHit
()
47
:
G4VHit
(),
48
fEdep(0.),fPos()
49
{}
50
51
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52
53
RE05TrackerHit::~RE05TrackerHit
()
54
{}
55
56
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57
58
RE05TrackerHit::RE05TrackerHit
(
const
RE05TrackerHit
&
right
)
59
:
G4VHit
()
60
{
61
fEdep
= right.
fEdep
;
62
fPos
= right.
fPos
;
63
}
64
65
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
66
67
const
RE05TrackerHit
&
RE05TrackerHit::operator=
(
const
RE05TrackerHit
&
right
)
68
{
69
fEdep
= right.
fEdep
;
70
fPos
= right.
fPos
;
71
return
*
this
;
72
}
73
74
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
75
76
G4bool
RE05TrackerHit::operator==
(
const
RE05TrackerHit
&
right
)
const
77
{
78
return
(
this
==&right) ?
true
:
false
;
79
}
80
81
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82
83
void
RE05TrackerHit::Draw
()
84
{
85
G4VVisManager
* pVVisManager =
G4VVisManager::GetConcreteInstance
();
86
if
(pVVisManager)
87
{
88
G4Circle
circle(
fPos
);
89
circle.
SetScreenSize
(0.04);
90
circle.
SetFillStyle
(
G4Circle::filled
);
91
G4Colour
colour(1.,0.,0.);
92
G4VisAttributes
attribs(colour);
93
circle.
SetVisAttributes
(attribs);
94
pVVisManager->
Draw
(circle);
95
}
96
}
97
98
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
99
100
const
std::map<G4String,G4AttDef>*
RE05TrackerHit::GetAttDefs
()
const
101
{
102
// G4AttDefs have to have long life. Use static member...
103
if
(
fAttDefs
.empty()) {
104
fAttDefs
[
"HitType"
] =
105
G4AttDef
(
"HitType"
,
"Type of hit"
,
"Physics"
,
""
,
"G4String"
);
106
}
107
return
&
fAttDefs
;
108
}
109
110
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
111
112
std::vector<G4AttValue>*
RE05TrackerHit::CreateAttValues
()
const
113
{
114
// Create expendable G4AttsValues for picking...
115
std::vector<G4AttValue>* attValues =
new
std::vector<G4AttValue>;
116
attValues->push_back
117
(
G4AttValue
(
"HitType"
,
"RE05TrackerHit"
,
""
));
118
//G4cout << "Checking...\n" << G4AttCheck(attValues, GetAttDefs());
119
return
attValues;
120
}
121
122
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
123
124
void
RE05TrackerHit::Print
()
125
{}
126
127
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
128
geant4
tree
geant4-10.6-release
examples
extended
runAndEvent
RE05
src
RE05TrackerHit.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:10
using
1.8.2 with
ECCE GitHub integration