54 : fSMan(SManager)
55{
56 G4UIparameter* param = nullptr;
57
58 scoreDir = new G4UIdirectory("/score/");
59 scoreDir->SetGuidance("Interactive scoring commands.");
60
61 listCmd = new G4UIcmdWithoutParameter("/score/list", this);
62 listCmd->SetGuidance("List scoring worlds.");
63
64 dumpCmd = new G4UIcmdWithoutParameter("/score/dump", this);
65 dumpCmd->SetGuidance("Dump results of scorers.");
66
67 verboseCmd = new G4UIcmdWithAnInteger("/score/verbose", this);
68 verboseCmd->SetGuidance("Verbosity.");
69 verboseCmd->SetGuidance(" 0) errors or warnings,");
70 verboseCmd->SetGuidance(" 1) information with 0)");
71
72 meshCreateDir = new G4UIdirectory("/score/create/");
73 meshCreateDir->SetGuidance(" Mesh creation commands.");
74
75
76 meshBoxCreateCmd = new G4UIcmdWithAString("/score/create/boxMesh", this);
77 meshBoxCreateCmd->SetGuidance("Create scoring box mesh.");
78 meshBoxCreateCmd->SetParameterName("MeshName", false);
79
80 meshCylinderCreateCmd =
81 new G4UIcmdWithAString("/score/create/cylinderMesh", this);
82 meshCylinderCreateCmd->SetGuidance("Create scoring mesh.");
83 meshCylinderCreateCmd->SetParameterName("MeshName", false);
84
85 meshRWLogVolCreateCmd =
86 new G4UIcommand("/score/create/realWorldLogVol", this);
87 meshRWLogVolCreateCmd->SetGuidance(
88 "Define scorers to a logical volume defined in the real world.");
89 meshRWLogVolCreateCmd->SetGuidance(
90 " - Name of the specified logical volume is used as the mesh name.");
91 meshRWLogVolCreateCmd->SetGuidance(
92 " - /score/mesh commands do not affect for this mesh.");
93 meshRWLogVolCreateCmd->SetGuidance(
94 " - If copyNumberLevel is set, the copy number of that-level higher");
95 meshRWLogVolCreateCmd->SetGuidance(
96 " in the geometrical hierarchy is used as the index.");
97 param = new G4UIparameter("logVol", 's', false);
98 meshRWLogVolCreateCmd->SetParameter(param);
99 param = new G4UIparameter("copyNumberLevel", 'i', true);
102 meshRWLogVolCreateCmd->SetParameter(param);
103
104 probeCreateCmd = new G4UIcommand("/score/create/probe", this);
105 probeCreateCmd->SetGuidance("Define scoring probe.");
106 probeCreateCmd->SetGuidance(
107 " halfSize defines the half-width of the probing cube.");
108 param = new G4UIparameter("pname", 's', false);
109 probeCreateCmd->SetParameter(param);
110 param = new G4UIparameter("halfSize", 'd', false);
111 probeCreateCmd->SetParameter(param);
112 param = new G4UIparameter("unit", 's', true);
114 probeCreateCmd->SetParameter(param);
115 param = new G4UIparameter("checkOverlap", 'b', true);
117 probeCreateCmd->SetParameter(param);
118
119 meshOpnCmd = new G4UIcmdWithAString("/score/open", this);
120 meshOpnCmd->SetGuidance("Open scoring mesh.");
121 meshOpnCmd->SetParameterName("MeshName", false);
122
123 meshClsCmd = new G4UIcmdWithoutParameter("/score/close", this);
124 meshClsCmd->SetGuidance("Close scoring mesh.");
125
126 meshDir = new G4UIdirectory("/score/mesh/");
127 meshDir->SetGuidance(" Mesh processing commands.");
128
129 mBoxSizeCmd = new G4UIcmdWith3VectorAndUnit("/score/mesh/boxSize", this);
130 mBoxSizeCmd->SetGuidance("Define size of the scoring mesh.");
131 mBoxSizeCmd->SetGuidance("Dx Dy Dz unit");
132 mBoxSizeCmd->SetParameterName("Di", "Dj", "Dk", false, false);
133 mBoxSizeCmd->SetRange("Di>0. && Dj>0. && Dk>0.");
134 mBoxSizeCmd->SetDefaultUnit("mm");
135
136 mCylinderSizeCmd = new G4UIcommand("/score/mesh/cylinderSize", this);
137 mCylinderSizeCmd->SetGuidance("Define size of the scoring mesh.");
138 mCylinderSizeCmd->SetGuidance("R Dz unit");
139 param = new G4UIparameter("R", 'd', false);
141 mCylinderSizeCmd->SetParameter(param);
142 param = new G4UIparameter("Dz", 'd', false);
144 mCylinderSizeCmd->SetParameter(param);
145 param = new G4UIparameter("unit", 's', true);
147 mCylinderSizeCmd->SetParameter(param);
148
149 mCylinderRMinCmd =
150 new G4UIcmdWithADoubleAndUnit("/score/mesh/cylinderRMin", this);
151 mCylinderRMinCmd->SetGuidance("Define the inner radius of the tube mesh.");
152 mCylinderRMinCmd->SetGuidance("This command is not needed for cylinder mesh");
153 mCylinderRMinCmd->SetParameterName("RMin", false, false);
154 mCylinderRMinCmd->SetRange("RMin>=0.");
155 mCylinderRMinCmd->SetDefaultUnit("mm");
156
157 mCylinderAngleCmd = new G4UIcommand("/score/mesh/cylinderAngles", this);
158 mCylinderAngleCmd->SetGuidance(
159 "Define starting angle and span for tube segment mesh.");
160 mCylinderAngleCmd->SetGuidance(
161 "This command is not needed for cylinder mesh");
162 param = new G4UIparameter("startPhi", 'd', false);
163 mCylinderAngleCmd->SetParameter(param);
164 param = new G4UIparameter("deltaPhi", 'd', false);
166 mCylinderAngleCmd->SetParameter(param);
167 param = new G4UIparameter("unit", 's', true);
169 mCylinderAngleCmd->SetParameter(param);
170
171
172 mBinCmd = new G4UIcommand("/score/mesh/nBin", this);
173 mBinCmd->SetGuidance("Define segments of the scoring mesh.");
174 mBinCmd->SetGuidance("[usage] /score/mesh/nBin");
175 mBinCmd->SetGuidance(" In case of boxMesh, parameters are given in");
176 mBinCmd->SetGuidance(" Ni :(int) Number of bins i (in x-axis) ");
177 mBinCmd->SetGuidance(" Nj :(int) Number of bins j (in y-axis) ");
178 mBinCmd->SetGuidance(" Nk :(int) Number of bins k (in z-axis) ");
179 mBinCmd->SetGuidance(" In case of cylinderMesh, parameters are given in");
180 mBinCmd->SetGuidance(" Nr :(int) Number of bins in radial axis ");
181 mBinCmd->SetGuidance(" Nz :(int) Number of bins in z axis ");
182 mBinCmd->SetGuidance(" Nphi:(int) Number of bins in phi axis ");
183
184 param = new G4UIparameter("Ni", 'i', false);
187 mBinCmd->SetParameter(param);
188 param = new G4UIparameter("Nj", 'i', false);
191 mBinCmd->SetParameter(param);
192 param = new G4UIparameter("Nk", 'i', false);
194 mBinCmd->SetParameter(param);
196
197
198 mTransDir = new G4UIdirectory("/score/mesh/translate/");
199 mTransDir->SetGuidance("Mesh translation commands.");
200
201 mTResetCmd = new G4UIcmdWithoutParameter("/score/mesh/translate/reset", this);
202 mTResetCmd->SetGuidance("Reset translated position of the scoring mesh.");
203
204 mTXyzCmd = new G4UIcmdWith3VectorAndUnit("/score/mesh/translate/xyz", this);
205 mTXyzCmd->SetGuidance("Translate the scoring mesh.");
206 mTXyzCmd->SetParameterName("X", "Y", "Z", false, false);
207 mTXyzCmd->SetDefaultUnit("mm");
208
209 mRotDir = new G4UIdirectory("/score/mesh/rotate/");
210 mRotDir->SetGuidance("Mesh rotation commands.");
211
212 mRotXCmd = new G4UIcmdWithADoubleAndUnit("/score/mesh/rotate/rotateX", this);
213 mRotXCmd->SetGuidance("Rotate the scoring mesh in X axis.");
214 mRotXCmd->SetParameterName("Rx", false);
215 mRotXCmd->SetDefaultUnit("deg");
216
217 mRotYCmd = new G4UIcmdWithADoubleAndUnit("/score/mesh/rotate/rotateY", this);
218 mRotYCmd->SetGuidance("Rotate the scoring mesh in Y axis.");
219 mRotYCmd->SetParameterName("Ry", false);
220 mRotYCmd->SetDefaultUnit("deg");
221
222 mRotZCmd = new G4UIcmdWithADoubleAndUnit("/score/mesh/rotate/rotateZ", this);
223 mRotZCmd->SetGuidance("Rotate the scoring mesh in Z axis.");
224 mRotZCmd->SetParameterName("Rz", false);
225 mRotZCmd->SetDefaultUnit("deg");
226
227 probeDir = new G4UIdirectory("/score/probe/");
228 probeDir->SetGuidance("Probe commands");
229
230 probeMatCmd = new G4UIcmdWithAString("/score/probe/material", this);
231 probeMatCmd->SetGuidance("Specify a material to the probe cube.");
232 probeMatCmd->SetGuidance("Material name has to be taken from G4NistManager.");
233 probeMatCmd->SetGuidance("Once this command is used, the specified material "
234 "overlays the material in the mass geometry");
235 probeMatCmd->SetGuidance("with \"Layered Mass Geometry\" mechanism so that "
236 "physics quantities such as energy deposition");
237 probeMatCmd->SetGuidance("or dose will be calculated with this material.");
238 probeMatCmd->SetGuidance("To switch-off this overlaying, use \"none\".");
239 probeMatCmd->SetParameterName("matName", true);
240 probeMatCmd->SetDefaultValue("none");
241
242 probeLocateCmd = new G4UIcmdWith3VectorAndUnit("/score/probe/locate", this);
243 probeLocateCmd->SetGuidance(
244 "Locate a probe in the global coordinate system.");
245 probeLocateCmd->SetParameterName("x", "y", "z", false);
246 probeLocateCmd->SetDefaultUnit("mm");
247
248
249 drawCmd = new G4UIcommand("/score/drawProjection", this);
250 drawCmd->SetGuidance("Draw projection(s) of scored quantities.");
251 drawCmd->SetGuidance(
252 "Parameter <proj> specified which projection(s) to be drawn.");
253 drawCmd->SetGuidance(
254 " 100 : xy-plane, 010 : yz-plane, 001 : zx-plane -- default 111");
255 drawCmd->SetGuidance(
256 " 100 : N/A, 010 : z_phi-plane, 001 : r_phi-plane -- default 111");
257 param = new G4UIparameter("meshName", 's', false);
258 drawCmd->SetParameter(param);
259 param = new G4UIparameter("psName", 's', false);
260 drawCmd->SetParameter(param);
261 param = new G4UIparameter("colorMapName", 's', true);
263 drawCmd->SetParameter(param);
264 param = new G4UIparameter("proj", 'i', true);
266 drawCmd->SetParameter(param);
267 drawCmd->SetToBeBroadcasted(false);
268
269
270 drawColumnCmd = new G4UIcommand("/score/drawColumn", this);
271 drawColumnCmd->SetGuidance("Draw a cell column.");
272 drawColumnCmd->SetGuidance(" plane = 0 : x-y, 1: y-z, 2: z-x for box mesh");
273 drawColumnCmd->SetGuidance(
274 " 0 : z-phi, 1: r-phi, 2: r-z for cylinder mesh");
275 param = new G4UIparameter("meshName", 's', false);
276 drawColumnCmd->SetParameter(param);
277 param = new G4UIparameter("psName", 's', false);
278 drawColumnCmd->SetParameter(param);
279 param = new G4UIparameter("plane", 'i', false);
281 drawColumnCmd->SetParameter(param);
282 param = new G4UIparameter("column", 'i', false);
283 drawColumnCmd->SetParameter(param);
284 param = new G4UIparameter("colorMapName", 's', true);
286 drawColumnCmd->SetParameter(param);
287 drawColumnCmd->SetToBeBroadcasted(false);
288
289 colorMapDir = new G4UIdirectory("/score/colorMap/");
290 colorMapDir->SetGuidance("Color map commands.");
291
292 listColorMapCmd =
293 new G4UIcmdWithoutParameter("/score/colorMap/listScoreColorMaps", this);
294 listColorMapCmd->SetGuidance("List registered score color maps.");
295 listColorMapCmd->SetToBeBroadcasted(false);
296
297 floatMinMaxCmd = new G4UIcmdWithAString("/score/colorMap/floatMinMax", this);
298 floatMinMaxCmd->SetGuidance(
299 "Min/Max of the color map is calculated according to the actual scores.");
300 floatMinMaxCmd->SetParameterName("colorMapName", true, false);
301 floatMinMaxCmd->SetDefaultValue("defaultLinearColorMap");
302 floatMinMaxCmd->SetToBeBroadcasted(false);
303
304 colorMapMinMaxCmd = new G4UIcommand("/score/colorMap/setMinMax", this);
305 colorMapMinMaxCmd->SetGuidance("Define min/max value of the color map.");
306 param = new G4UIparameter("colorMapMame", 's', true);
308 colorMapMinMaxCmd->SetParameter(param);
309 param = new G4UIparameter("minValue", 'd', false);
310 colorMapMinMaxCmd->SetParameter(param);
311 param = new G4UIparameter("maxValue", 'd', false);
312 colorMapMinMaxCmd->SetParameter(param);
313 colorMapMinMaxCmd->SetToBeBroadcasted(false);
314
315
316 dumpQtyToFileCmd = new G4UIcommand("/score/dumpQuantityToFile", this);
317 dumpQtyToFileCmd->SetGuidance("Dump one scored quantity to file.");
318 param = new G4UIparameter("meshName", 's', false);
319 dumpQtyToFileCmd->SetParameter(param);
320 param = new G4UIparameter("psName", 's', false);
321 dumpQtyToFileCmd->SetParameter(param);
322 param = new G4UIparameter("fileName", 's', false);
323 dumpQtyToFileCmd->SetParameter(param);
324 param = new G4UIparameter("option", 's', true);
325 dumpQtyToFileCmd->SetParameter(param);
326 dumpQtyToFileCmd->SetToBeBroadcasted(false);
327
328 dumpQtyWithFactorCmd = new G4UIcommand("/score/dumpQuantityWithFactor", this);
329 dumpQtyWithFactorCmd->SetGuidance("Dump one scored quantity to file.");
330 dumpQtyWithFactorCmd->SetGuidance(
331 "Each value is multiplied by the specified factor.");
332 param = new G4UIparameter("meshName", 's', false);
333 dumpQtyWithFactorCmd->SetParameter(param);
334 param = new G4UIparameter("psName", 's', false);
335 dumpQtyWithFactorCmd->SetParameter(param);
336 param = new G4UIparameter("fileName", 's', false);
337 dumpQtyWithFactorCmd->SetParameter(param);
338 param = new G4UIparameter("factor", 'd', false);
340 dumpQtyWithFactorCmd->SetParameter(param);
341 param = new G4UIparameter("option", 's', true);
342 dumpQtyWithFactorCmd->SetParameter(param);
343 dumpQtyWithFactorCmd->SetToBeBroadcasted(false);
344
345
346 dumpAllQtsToFileCmd = new G4UIcommand("/score/dumpAllQuantitiesToFile", this);
347 dumpAllQtsToFileCmd->SetGuidance("Dump all quantities of the mesh to file.");
348 param = new G4UIparameter("meshName", 's', false);
349 dumpAllQtsToFileCmd->SetParameter(param);
350 param = new G4UIparameter("fileName", 's', false);
351 dumpAllQtsToFileCmd->SetParameter(param);
352 param = new G4UIparameter("option", 's', true);
353 dumpAllQtsToFileCmd->SetParameter(param);
354 dumpAllQtsToFileCmd->SetToBeBroadcasted(false);
355
356 dumpAllQtsWithFactorCmd =
357 new G4UIcommand("/score/dumpAllQuantitiesWithFactor", this);
358 dumpAllQtsWithFactorCmd->SetGuidance(
359 "Dump all quantities of the mesh to file.");
360 dumpAllQtsWithFactorCmd->SetGuidance(
361 "Each value is multiplied by the specified factor.");
362 param = new G4UIparameter("meshName", 's', false);
363 dumpAllQtsWithFactorCmd->SetParameter(param);
364 param = new G4UIparameter("fileName", 's', false);
365 dumpAllQtsWithFactorCmd->SetParameter(param);
366 param = new G4UIparameter("factor", 'd', false);
368 dumpAllQtsWithFactorCmd->SetParameter(param);
369 param = new G4UIparameter("option", 's', true);
370 dumpAllQtsWithFactorCmd->SetParameter(param);
371 dumpAllQtsWithFactorCmd->SetToBeBroadcasted(false);
372
373 fill1DCmd = new G4UIcommand("/score/fill1D", this);
374 fill1DCmd->SetGuidance("Let a primitive scorer fill 1-D histogram");
375 fill1DCmd->SetGuidance("Before using this command, primitive scorer must be "
376 "defined and assigned.");
377 fill1DCmd->SetGuidance("Also before using this command, a histogram has to "
378 "be defined by /analysis/h1/create command.");
379 fill1DCmd->SetGuidance(
380 "This command is available only for real-world volume or probe.");
381 fill1DCmd->SetGuidance("Please note that this command has to be applied to "
382 "each copy number of the scoring volume.");
383 fill1DCmd->SetGuidance("If same histogram ID is used more than once, more "
384 "than one scorers fill that histogram.");
385 param = new G4UIparameter("histID", 'i', false);
386 fill1DCmd->SetParameter(param);
387 param = new G4UIparameter("meshName", 's', false);
388 fill1DCmd->SetParameter(param);
389 param = new G4UIparameter("scorerName", 's', false);
390 fill1DCmd->SetParameter(param);
391 param = new G4UIparameter("copyNo", 'i', true);
393 fill1DCmd->SetParameter(param);
394}
void SetDefaultValue(const char *theDefaultValue)
void SetParameterRange(const char *theRange)
void SetDefaultUnit(const char *theDefaultUnit)