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
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
analysis
coresoftware
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
tree
geant4-10.6-release
config
environments
examples
advanced
basic
extended
analysis
biasing
common
electromagnetic
errorpropagation
eventgenerator
exoticphysics
field
g3tog4
geometry
hadronic
medical
optical
parallel
parameterisations
persistency
physicslists
polarisation
radioactivedecay
runAndEvent
RE01
RE02
RE03
RE04
RE05
include
src
RE05ActionInitialization.cc
RE05CalorimeterHit.cc
RE05CalorimeterParallelWorld.cc
RE05CalorimeterParametrisation.cc
RE05CalorimeterSD.cc
RE05DetectorConstruction.cc
RE05EventAction.cc
RE05Field.cc
RE05MuonHit.cc
RE05MuonSD.cc
RE05PrimaryGeneratorAction.cc
RE05PrimaryGeneratorMessenger.cc
RE05RunAction.cc
RE05StackingAction.cc
RE05StackingActionMessenger.cc
RE05SteppingAction.cc
RE05SteppingVerbose.cc
RE05TrackerHit.cc
RE05TrackerParametrisation.cc
RE05TrackerSD.cc
RE05TrackingAction.cc
RE05WorkerInitialization.cc
exampleRE05.cc
pythia_main.f
RE06
visualization
source
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
RE05MuonHit.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file RE05MuonHit.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 "
RE05MuonHit.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<RE05MuonHit>
*
RE05MuonHitAllocator
=0;
42
43
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44
45
RE05MuonHit::RE05MuonHit
()
46
:
G4VHit
(),fEdep(0.),fPos()
47
{}
48
49
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
50
51
RE05MuonHit::~RE05MuonHit
()
52
{}
53
54
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
55
56
RE05MuonHit::RE05MuonHit
(
const
RE05MuonHit
&
right
)
57
:
G4VHit
()
58
{
59
fEdep
= right.
fEdep
;
60
fPos
= right.
fPos
;
61
}
62
63
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64
65
const
RE05MuonHit
&
RE05MuonHit::operator=
(
const
RE05MuonHit
&
right
)
66
{
67
fEdep
= right.
fEdep
;
68
fPos
= right.
fPos
;
69
return
*
this
;
70
}
71
72
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
73
74
G4bool
RE05MuonHit::operator==
(
const
RE05MuonHit
&
right
)
const
75
{
76
return
(
this
==&right) ?
true
:
false
;
77
}
78
79
std::map<G4String,G4AttDef>
RE05MuonHit::fAttDefs
;
80
81
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82
83
void
RE05MuonHit::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>*
RE05MuonHit::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>*
RE05MuonHit::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"
,
"RE05MuonHit"
,
""
));
118
//G4cout << "Checking...\n" << G4AttCheck(attValues, GetAttDefs());
119
return
attValues;
120
}
121
122
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
123
124
void
RE05MuonHit::Print
()
125
{}
126
127
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
geant4
tree
geant4-10.6-release
examples
extended
runAndEvent
RE05
src
RE05MuonHit.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:10
using
1.8.2 with
ECCE GitHub integration