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
BlineTracer
field01
field02
field03
field04
include
src
F04ActionInitialization.cc
F04DetectorConstruction.cc
F04DetectorMessenger.cc
F04ElementField.cc
F04EventAction.cc
F04EventActionMessenger.cc
F04FieldMessenger.cc
F04FocusSolenoid.cc
F04GlobalField.cc
F04Materials.cc
F04PhysicsList.cc
F04PhysicsListMessenger.cc
F04PrimaryGeneratorAction.cc
F04PrimaryGeneratorMessenger.cc
F04RunAction.cc
F04RunActionMessenger.cc
F04SimpleSolenoid.cc
F04StackingAction.cc
F04StepMax.cc
F04SteppingAction.cc
F04SteppingActionMessenger.cc
F04SteppingVerbose.cc
F04TrackingAction.cc
F04Trajectory.cc
F04TrajectoryPoint.cc
F04UserTrackInformation.cc
field04.cc
field05
field06
g3tog4
geometry
hadronic
medical
optical
parallel
parameterisations
persistency
physicslists
polarisation
radioactivedecay
runAndEvent
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
F04Materials.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file F04Materials.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 "
F04Materials.hh
"
32
#include "
G4SystemOfUnits.hh
"
33
34
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
35
36
F04Materials::F04Materials
()
37
{
38
fNistMan
=
G4NistManager::Instance
();
39
40
fNistMan
->
SetVerbose
(2);
41
42
CreateMaterials
();
43
}
44
45
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46
47
F04Materials::~F04Materials
()
48
{
49
delete
fVacuum
;
50
delete
fAir
;
51
delete
fSci
;
52
delete
fBeO
;
53
}
54
55
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
56
57
F04Materials
*
F04Materials::fInstance
= 0;
58
59
F04Materials
*
F04Materials::GetInstance
()
60
{
61
if
(
fInstance
== 0)
62
{
63
fInstance
=
new
F04Materials
();
64
}
65
return
fInstance
;
66
}
67
68
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
69
70
G4Material
*
F04Materials::GetMaterial
(
const
G4String
material
)
71
{
72
G4Material
*
mat
=
fNistMan
->
FindOrBuildMaterial
(material);
73
74
if
(!mat) mat =
G4Material::GetMaterial
(material);
75
if
(!mat) {
G4cout
<< material <<
"Not Found, Please Retry"
<<
G4endl
;}
76
77
return
mat
;
78
}
79
80
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
81
82
void
F04Materials::CreateMaterials
()
83
{
84
G4double
density;
85
std::vector<G4int> natoms;
86
std::vector<G4double> fractionMass;
87
std::vector<G4String>
elements
;
88
89
// Materials Definitions
90
// =====================
91
92
// Define Vacuum
93
94
fVacuum
=
fNistMan
->
FindOrBuildMaterial
(
"G4_Galactic"
);
95
96
// Define Air
97
98
fAir
=
fNistMan
->
FindOrBuildMaterial
(
"G4_AIR"
);
99
100
// Define BeO
101
102
fBeO
=
fNistMan
->
FindOrBuildMaterial
(
"G4_BERYLLIUM_OXIDE"
);
103
104
// Define Scintillator
105
106
elements.push_back(
"C"
); natoms.push_back(9);
107
elements.push_back(
"H"
); natoms.push_back(10);
108
109
density = 1.032*
g
/
cm3
;;
110
111
fSci
=
fNistMan
->
112
ConstructNewMaterial(
"Scintillator"
, elements, natoms, density);
113
114
elements.clear();
115
natoms.clear();
116
117
G4cout
<<
G4endl
<<
"The materials defined are: "
<<
G4endl
<<
G4endl
;
118
119
G4cout
<< *(
G4Material::GetMaterialTable
()) << G4endl;
120
}
geant4
tree
geant4-10.6-release
examples
extended
field
field04
src
F04Materials.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:05
using
1.8.2 with
ECCE GitHub integration