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
DetectorConstructionMessenger.cc
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file DetectorConstructionMessenger.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
27
#include "
DetectorConstructionMessenger.hh
"
28
#include "DetectorConstruction.hh"
29
#include "
G4UIdirectory.hh
"
30
#include "
G4UIcmdWithADoubleAndUnit.hh
"
31
#include "
G4UIcmdWithABool.hh
"
32
#include "
G4UIcmdWithAString.hh
"
33
#include "
G4UIcmdWith3VectorAndUnit.hh
"
34
#include "
G4UIcmdWith3Vector.hh
"
35
#include "
G4UIcmdWithADouble.hh
"
36
#include "
G4RunManager.hh
"
37
38
#include "
G4ios.hh
"
39
40
DetectorConstructionMessenger::
41
DetectorConstructionMessenger
(
42
DetectorConstruction
* mpga)
43
:fTarget(mpga){
44
fMyXtalDirectory
=
new
G4UIdirectory
(
"/xtal/"
);
45
fMyXtalDirectory
->
SetGuidance
(
"Crystal setup control commands."
);
46
47
fXtalMaterialCmd
=
new
G4UIcmdWithAString
(
"/xtal/setMaterial"
,
48
this
);
49
fXtalMaterialCmd
->
SetGuidance
(
"Set crystal material."
);
50
fXtalMaterialCmd
->
SetParameterName
(
"xMat"
,
true
);
51
fXtalMaterialCmd
->
SetDefaultValue
(
"G4_Si"
);
52
53
fXtalSizeCmd
=
new
G4UIcmdWith3VectorAndUnit
(
"/xtal/setSize"
,
this
);
54
fXtalSizeCmd
->
SetGuidance
(
"Set crystal size."
);
55
fXtalSizeCmd
->
SetParameterName
(
"xtalSizeX"
,
56
"xtalSizeY"
,
57
"xtalSizeZ"
,
58
true
);
59
fXtalSizeCmd
->
SetDefaultValue
(
G4ThreeVector
(6.,2.,6.));
60
fXtalSizeCmd
->
SetDefaultUnit
(
"mm"
);
61
62
fXtalBRCmd
=
new
G4UIcmdWith3VectorAndUnit
(
"/xtal/setBR"
,
this
);
63
fXtalBRCmd
->
SetGuidance
(
"Set crystal bending radius."
);
64
fXtalBRCmd
->
SetParameterName
(
"xtalBRX"
,
65
"xtalBRY"
,
66
"xtalBRZ"
,
67
true
);
68
fXtalBRCmd
->
SetDefaultValue
(
G4ThreeVector
(0.,0.,0.));
69
fXtalBRCmd
->
SetDefaultUnit
(
"m"
);
70
71
fXtalAngleCmd
=
new
G4UIcmdWith3VectorAndUnit
(
"/xtal/setAngle"
,
this
);
72
fXtalAngleCmd
->
SetGuidance
(
"Set crystal angles."
);
73
fXtalAngleCmd
->
SetParameterName
(
"xtalAngleX"
,
74
"xtalAngleY"
,
75
"xtalAngleZ"
,
76
true
);
77
fXtalAngleCmd
->
SetDefaultValue
(
G4ThreeVector
(0.,0.,0.));
78
fXtalAngleCmd
->
SetDefaultUnit
(
"rad"
);
79
80
fXtalECCmd
=
new
G4UIcmdWithAString
(
"/xtal/setEC"
,
81
this
);
82
fXtalECCmd
->
SetGuidance
(
"Set crystal EC."
);
83
fXtalECCmd
->
SetParameterName
(
"xEC"
,
true
);
84
fXtalECCmd
->
SetDefaultValue
(
"data/Si220pl"
);
85
}
86
87
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
88
89
DetectorConstructionMessenger::
90
~DetectorConstructionMessenger
(){
91
delete
fXtalMaterialCmd
;
92
delete
fXtalSizeCmd
;
93
delete
fXtalAngleCmd
;
94
delete
fXtalECCmd
;
95
delete
fXtalBRCmd
;
96
}
97
98
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
99
100
void
DetectorConstructionMessenger::SetNewValue
(
101
G4UIcommand
*command,
102
G4String
newValue){
103
if
(command==
fXtalMaterialCmd
){
104
fTarget
->
SetMaterial
(newValue);
105
}
106
if
(command==
fXtalSizeCmd
){
107
fTarget
->
SetSizes
(
fXtalSizeCmd
->
GetNew3VectorValue
(newValue));
108
}
109
if
(command==
fXtalBRCmd
){
110
fTarget
->
SetBR
(
fXtalBRCmd
->
GetNew3VectorValue
(newValue));
111
}
112
if
(command==
fXtalAngleCmd
){
113
fTarget
->
SetAngles
(
fXtalAngleCmd
->
GetNew3VectorValue
(newValue));
114
}
115
if
(command==
fXtalECCmd
){
116
fTarget
->
SetEC
(newValue);
117
}
118
}
119
120
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
121
122
G4String
DetectorConstructionMessenger::GetCurrentValue
(
123
G4UIcommand
* command){
124
G4String
cv;
125
126
if
( command==
fXtalMaterialCmd
){
127
cv =
fTarget
->
GetMaterial
();
128
}
129
if
( command==
fXtalSizeCmd
){
130
cv =
fXtalSizeCmd
->
ConvertToString
(
fTarget
->
GetSizes
(),
"mm"
);
131
}
132
if
( command==
fXtalBRCmd
){
133
cv =
fXtalBRCmd
->
ConvertToString
(
fTarget
->
GetBR
(),
"m"
);
134
}
135
if
( command==
fXtalAngleCmd
){
136
cv =
fXtalAngleCmd
->
ConvertToString
(
fTarget
->
GetAngles
(),
"rad"
);
137
}
138
if
( command==
fXtalECCmd
){
139
cv =
fTarget
->
GetEC
();
140
}
141
return
cv;
142
}
143
144
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
geant4
tree
geant4-10.6-release
examples
extended
exoticphysics
channeling
src
DetectorConstructionMessenger.cc
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:04
using
1.8.2 with
ECCE GitHub integration