-
Notifications
You must be signed in to change notification settings - Fork 329
/
Copy pathG4tgrLineProcessor.cc
330 lines (294 loc) · 10.3 KB
/
G4tgrLineProcessor.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// G4tgrLineProcessor
//
// Author: P.Arce, CIEMAT (November 2007)
// --------------------------------------------------------------------
#include "G4tgrLineProcessor.hh"
#include "G4SystemOfUnits.hh"
#include "G4tgrParameterMgr.hh"
#include "G4tgrFileIn.hh"
#include "G4tgrElementSimple.hh"
#include "G4tgrElementFromIsotopes.hh"
#include "G4tgrVolume.hh"
#include "G4tgrVolumeDivision.hh"
#include "G4tgrVolumeAssembly.hh"
#include "G4tgrPlaceDivRep.hh"
#include "G4tgrPlaceParameterisation.hh"
#include "G4tgrVolumeMgr.hh"
#include "G4tgrUtils.hh"
#include "G4tgrMaterialFactory.hh"
#include "G4tgrRotationMatrixFactory.hh"
#include "G4tgrMessenger.hh"
// --------------------------------------------------------------------
G4tgrLineProcessor::G4tgrLineProcessor()
{
volmgr = G4tgrVolumeMgr::GetInstance();
}
// --------------------------------------------------------------------
G4tgrLineProcessor::~G4tgrLineProcessor()
{
}
// --------------------------------------------------------------------
G4bool G4tgrLineProcessor::ProcessLine(const std::vector<G4String>& wl)
{
#ifdef G4VERBOSE
if(G4tgrMessenger::GetVerboseLevel() >= 1)
{
G4tgrUtils::DumpVS(wl, "@@@ Processing input line");
}
#endif
// ignore empty word list
if(!wl.size())
return true;
G4String wl0 = wl[0];
for(G4int ii = 0; ii < (G4int)wl0.length(); ++ii)
{
wl0[ii] = (char)std::toupper(wl0[ii]);
}
//------------------------------- parameter number
if(wl0 == ":P")
{
G4tgrParameterMgr::GetInstance()->AddParameterNumber(wl);
//------------------------------- parameter string
}
else if(wl0 == ":PS")
{
G4tgrParameterMgr::GetInstance()->AddParameterString(wl);
//------------------------------- isotope
}
else if(wl0 == ":ISOT")
{
G4tgrIsotope* isot = G4tgrMaterialFactory::GetInstance()->AddIsotope(wl);
volmgr->RegisterMe(isot);
//------------------------------- element
}
else if(wl0 == ":ELEM")
{
G4tgrElementSimple* elem =
G4tgrMaterialFactory::GetInstance()->AddElementSimple(wl);
volmgr->RegisterMe(elem);
//------------------------------- element from isotopes
}
else if(wl0 == ":ELEM_FROM_ISOT")
{
//:ELEM_FROM_ISOT NAME SYMBOL N_ISOT (ISOT_NAME ISOT_ABUNDANCE)
G4tgrElementFromIsotopes* elem =
G4tgrMaterialFactory::GetInstance()->AddElementFromIsotopes(wl);
volmgr->RegisterMe(elem);
//------------------------------- material
}
else if(wl0 == ":MATE")
{
G4tgrMaterialSimple* mate =
G4tgrMaterialFactory::GetInstance()->AddMaterialSimple(wl);
volmgr->RegisterMe(mate);
//------------------------------- material mixtures & by weight
}
else if((wl0 == ":MIXT") || (wl0 == ":MIXT_BY_WEIGHT"))
{
G4tgrMaterialMixture* mate =
G4tgrMaterialFactory::GetInstance()->AddMaterialMixture(
wl, "MaterialMixtureByWeight");
volmgr->RegisterMe(mate);
//------------------------------- material mixture by number of atoms
}
else if(wl0 == ":MIXT_BY_NATOMS")
{
G4tgrMaterialMixture* mate =
G4tgrMaterialFactory::GetInstance()->AddMaterialMixture(
wl, "MaterialMixtureByNoAtoms");
volmgr->RegisterMe(mate);
//------------------------------- material mixture by volume
}
else if(wl0 == ":MIXT_BY_VOLUME")
{
G4tgrMaterialMixture* mate =
G4tgrMaterialFactory::GetInstance()->AddMaterialMixture(
wl, "MaterialMixtureByVolume");
volmgr->RegisterMe(mate);
//------------------------------- material Mean Excitation Energy of
// Ionisation Potential
}
else if(wl0 == ":MATE_MEE")
{
G4tgrMaterial* mate = G4tgrMaterialFactory::GetInstance()->FindMaterial(
G4tgrUtils::GetString(wl[1]));
if(mate == 0)
{
G4Exception("G4tgrLineProcessor::ProcessLine()", "Material not found",
FatalException, G4tgrUtils::GetString(wl[1]));
return false;
}
mate->SetIonisationMeanExcitationEnergy(G4tgrUtils::GetDouble(wl[2]));
//------------------------------- material
}
else if(wl0 == ":MATE_STATE")
{
G4tgrMaterial* mate = G4tgrMaterialFactory::GetInstance()->FindMaterial(
G4tgrUtils::GetString(wl[1]));
if(mate == 0)
{
G4Exception("G4tgrLineProcessor::ProcessLine()", "Material not found",
FatalException, wl[1]);
}
mate->SetState(wl[2]);
//------------------------------- material
}
else if(wl0 == ":MATE_TEMPERATURE")
{
G4tgrMaterial* mate = G4tgrMaterialFactory::GetInstance()->FindMaterial(
G4tgrUtils::GetString(wl[1]));
if(mate == 0)
{
G4Exception("G4tgrLineProcessor::ProcessLine()", "Material not found",
FatalException, wl[1]);
}
mate->SetTemperature(G4tgrUtils::GetDouble(wl[2], kelvin));
//------------------------------- material
}
else if(wl0 == ":MATE_PRESSURE")
{
G4tgrMaterial* mate = G4tgrMaterialFactory::GetInstance()->FindMaterial(
G4tgrUtils::GetString(wl[1]));
if(mate == 0)
{
G4Exception("G4tgrLineProcessor::ProcessLine()", "Material not found",
FatalException, wl[1]);
}
mate->SetPressure(G4tgrUtils::GetDouble(wl[2], atmosphere));
//------------------------------- solid
}
else if(wl0 == ":SOLID")
{ // called from here or from G4tgrVolume::G4tgrVolume
volmgr->CreateSolid(wl, 0);
//------------------------------- volume
}
else if(wl0 == ":VOLU")
{
G4tgrVolume* vol = new G4tgrVolume(wl);
volmgr->RegisterMe(vol);
//--------------------------------- single placement
}
else if(wl0 == ":PLACE")
{
G4tgrVolume* vol = FindVolume(G4tgrUtils::GetString(wl[1]));
G4tgrPlace* vpl = vol->AddPlace(wl);
volmgr->RegisterMe(vpl);
//--------------------------------- parameterisation
}
else if(wl0 == ":PLACE_PARAM")
{
G4tgrVolume* vol = FindVolume(G4tgrUtils::GetString(wl[1]));
G4tgrPlaceParameterisation* vpl = vol->AddPlaceParam(wl);
volmgr->RegisterMe(vpl);
//--------------------------------- division
}
else if((wl0 == ":DIV_NDIV") || (wl0 == ":DIV_WIDTH") ||
(wl0 == ":DIV_NDIV_WIDTH"))
{
//---------- Create G4tgrVolumeDivision and fill the volume params
G4tgrVolumeDivision* vol = new G4tgrVolumeDivision(wl);
volmgr->RegisterMe(vol);
//--------------------------------- replica
}
else if(wl0 == ":REPL")
{
G4tgrVolume* vol = FindVolume(G4tgrUtils::GetString(wl[1]));
G4tgrPlaceDivRep* vpl = vol->AddPlaceReplica(wl);
volmgr->RegisterMe(vpl);
//----------------------------- assembly volume: definition of components
}
else if(wl0 == ":VOLU_ASSEMBLY")
{
G4tgrVolumeAssembly* vol = new G4tgrVolumeAssembly(wl);
volmgr->RegisterMe(vol);
//----------------------------- assembly volume: definition of components
}
else if(wl0 == ":PLACE_ASSEMBLY")
{
G4tgrVolume* vol = FindVolume(G4tgrUtils::GetString(wl[1]));
G4tgrPlace* vpl = vol->AddPlace(wl);
volmgr->RegisterMe(vpl);
//--------------------------------- rotation matrix
}
else if(wl0 == ":ROTM")
{
//---------- When second word is ':NEXT/:MNXT' it is used for defining a
// rotation matrix that will be used for the next placement/s
G4tgrRotationMatrix* rm =
G4tgrRotationMatrixFactory::GetInstance()->AddRotMatrix(wl);
volmgr->RegisterMe(rm);
//------------------------------- visualisation
}
else if(wl0 == ":VIS")
{
std::vector<G4tgrVolume*> vols =
volmgr->FindVolumes(G4tgrUtils::GetString(wl[1]), 1);
for(std::size_t ii = 0; ii < vols.size(); ++ii)
{
vols[ii]->AddVisibility(wl);
}
//--------------------------------- colour
}
else if((wl0 == ":COLOUR") || (wl0 == ":COLOR"))
{
std::vector<G4tgrVolume*> vols =
volmgr->FindVolumes(G4tgrUtils::GetString(wl[1]), 1);
for(std::size_t ii = 0; ii < vols.size(); ++ii)
{
vols[ii]->AddRGBColour(wl);
}
//--------------------------------- check overlaps
}
else if(wl0 == ":CHECK_OVERLAPS")
{
std::vector<G4tgrVolume*> vols =
volmgr->FindVolumes(G4tgrUtils::GetString(wl[1]), 1);
for(std::size_t ii = 0; ii < vols.size(); ++ii)
{
vols[ii]->AddCheckOverlaps(wl);
}
//--------------------------------- ERROR
}
else
{
return false;
}
return true;
}
// --------------------------------------------------------------------
G4tgrVolume* G4tgrLineProcessor::FindVolume(const G4String& volname)
{
G4tgrVolume* vol = volmgr->FindVolume(volname, 1);
if(vol->GetType() == "VOLDivision")
{
G4Exception("G4tgrLineProcessor::FindVolume()", "InvalidSetup",
FatalException,
"Using 'PLACE' for a volume created by a division !");
}
return vol;
}