53 msDirectory->SetGuidance(
"Material scanner commands.");
56 scanCmd->SetGuidance(
"Start material scanning.");
57 scanCmd->SetGuidance(
"Scanning range should be defined with");
58 scanCmd->SetGuidance(
"/control/matScan/theta and /control/matSca/phi commands.");
61 thetaCmd =
new G4UIcommand(
"/control/matScan/theta",
this);
62 thetaCmd->SetGuidance(
"Define theta range.");
63 thetaCmd->SetGuidance(
"Usage : /control/matScan/theta [nbin] [thetaMin] [thetaSpan] [unit]");
64 thetaCmd->SetGuidance(
"Notation of angles :");
65 thetaCmd->SetGuidance(
" theta --- +Z axis : +90 deg. / X-Y plane : 0 deg. / -Z axis : -90 deg.");
68 thetaCmd->SetParameter(par);
70 thetaCmd->SetParameter(par);
74 thetaCmd->SetParameter(par);
78 thetaCmd->SetParameter(par);
80 phiCmd =
new G4UIcommand(
"/control/matScan/phi",
this);
81 phiCmd->SetGuidance(
"Define phi range.");
82 phiCmd->SetGuidance(
"Usage : /control/matScan/phi [nbin] [phiMin] [phiSpan] [unit]");
83 phiCmd->SetGuidance(
"Notation of angles :");
85 " phi --- +X axis : 0 deg. / +Y axis : 90 deg. / -X axis : 180 "
86 "deg. / -Y axis : 270 deg.");
89 phiCmd->SetParameter(par);
91 phiCmd->SetParameter(par);
95 phiCmd->SetParameter(par);
99 phiCmd->SetParameter(par);
101 singleCmd =
new G4UIcommand(
"/control/matScan/singleMeasure",
this);
102 singleCmd->SetGuidance(
"Measure thickness for one particular direction.");
103 singleCmd->SetGuidance(
"Notation of angles :");
104 singleCmd->SetGuidance(
" theta --- +Z axis : +90 deg. / X-Y plane : 0 deg. / -Z axis : -90 deg.");
105 singleCmd->SetGuidance(
106 " phi --- +X axis : 0 deg. / +Y axis : 90 deg. / -X axis : "
107 "180 deg. / -Y axis : 270 deg.");
110 singleCmd->SetParameter(par);
112 singleCmd->SetParameter(par);
116 singleCmd->SetParameter(par);
119 single2Cmd->SetGuidance(
"Measure thickness for one direction defined by a unit vector.");
120 single2Cmd->SetParameterName(
"X",
"Y",
"Z",
false);
123 eyePosCmd->SetGuidance(
"Define the eye position.");
124 eyePosCmd->SetParameterName(
"X",
"Y",
"Z",
true);
126 eyePosCmd->SetDefaultUnit(
"m");
128 regSenseCmd =
new G4UIcmdWithABool(
"/control/matScan/regionSensitive",
this);
129 regSenseCmd->SetGuidance(
"Set region sensitivity.");
130 regSenseCmd->SetGuidance(
"This command is automatically set to TRUE");
131 regSenseCmd->SetGuidance(
" if /control/matScan/region command is issued.");
132 regSenseCmd->SetParameterName(
"senseFlag",
true);
133 regSenseCmd->SetDefaultValue(
false);
136 regionCmd->SetGuidance(
"Define region name to be scanned.");
137 regionCmd->SetGuidance(
"/control/matScan/regionSensitive command is automatically");
138 regionCmd->SetGuidance(
"set to TRUE with this command.");
139 regionCmd->SetParameterName(
"region",
true);
140 regionCmd->SetDefaultValue(
"DefaultRegionForTheWorld");
143 verboseCmd->SetGuidance(
"Set verbose level of material scan");
144 verboseCmd->SetGuidance(
"0: default, properties integrated over the scan");
145 verboseCmd->SetGuidance(
"1: integrated properties per material");
146 verboseCmd->SetGuidance(
"2: detailed properties per material crossed");
147 verboseCmd->SetParameterName(
"verbose_level",
false);
148 verboseCmd->SetDefaultValue(0);
169 if (command == thetaCmd) {
170 currentValue = thetaCmd->ConvertToString(theScanner->GetNTheta());
172 currentValue += thetaCmd->ConvertToString((theScanner->GetThetaMin()) / deg);
174 currentValue += thetaCmd->ConvertToString((theScanner->GetThetaSpan()) / deg);
176 else if (command == phiCmd) {
177 currentValue = phiCmd->ConvertToString(theScanner->GetNPhi());
179 currentValue += phiCmd->ConvertToString((theScanner->GetPhiMin()) / deg);
181 currentValue += phiCmd->ConvertToString((theScanner->GetPhiSpan()) / deg);
183 else if (command == eyePosCmd) {
184 currentValue = eyePosCmd->ConvertToString(theScanner->GetEyePosition(),
"m");
186 else if (command == regSenseCmd) {
187 currentValue = regSenseCmd->ConvertToString(theScanner->GetRegionSensitive());
189 else if (command == regionCmd) {
190 currentValue = theScanner->GetRegionName();
198 if (command == scanCmd) {
201 else if (command == thetaCmd) {
207 thetaMin *= thetaCmd->ValueOf(unit);
208 thetaSpan *= thetaCmd->ValueOf(unit);
209 theScanner->SetNTheta(nbin);
210 theScanner->SetThetaMin(thetaMin);
211 theScanner->SetThetaSpan(thetaSpan);
213 else if (command == phiCmd) {
219 phiMin *= phiCmd->ValueOf(unit);
220 phiSpan *= phiCmd->ValueOf(unit);
221 theScanner->SetNPhi(nbin);
222 theScanner->SetPhiMin(phiMin);
223 theScanner->SetPhiSpan(phiSpan);
225 else if (command == eyePosCmd) {
226 theScanner->SetEyePosition(eyePosCmd->GetNew3VectorValue(newValue));
228 else if (command == regSenseCmd) {
229 theScanner->SetRegionSensitive(regSenseCmd->GetNewBoolValue(newValue));
231 else if (command == regionCmd) {
232 if (theScanner->SetRegionName(newValue)) theScanner->SetRegionSensitive(
true);
234 else if(command == verboseCmd)
236 theScanner->SetVerbosity(
StoI(newValue));
238 else if (command == singleCmd || command == single2Cmd) {
239 G4int ntheta = theScanner->GetNTheta();
240 G4double thetaMin = theScanner->GetThetaMin();
241 G4double thetaSpan = theScanner->GetThetaSpan();
242 G4int nphi = theScanner->GetNPhi();
243 G4double phiMin = theScanner->GetPhiMin();
244 G4double phiSpan = theScanner->GetPhiSpan();
248 if (command == singleCmd) {
250 theta =
StoD(next());
253 theta *= singleCmd->ValueOf(unit);
254 phi *= singleCmd->ValueOf(unit);
256 else if (command == single2Cmd) {
258 theta = 90. * deg - v.
theta();
261 theScanner->SetNTheta(1);
262 theScanner->SetThetaMin(theta);
263 theScanner->SetThetaSpan(0.);
264 theScanner->SetNPhi(1);
265 theScanner->SetPhiMin(phi);
266 theScanner->SetPhiSpan(0.);
269 theScanner->SetNTheta(ntheta);
270 theScanner->SetThetaMin(thetaMin);
271 theScanner->SetThetaSpan(thetaSpan);
272 theScanner->SetNPhi(nphi);
273 theScanner->SetPhiMin(phiMin);
274 theScanner->SetPhiSpan(phiSpan);