Standard constructor.
49 : fFieldParameters(fieldParameters)
50{
51
52
53 G4String directoryName = "/field/";
56 directoryName.append("/");
57 fDirectory = new G4UIdirectory(directoryName);
58 fDirectory->SetGuidance("Magnetic field control commands.");
59 }
60
61 G4String commandName = directoryName;
62 commandName.append("fieldType");
63 fFieldTypeCmd = new G4UIcmdWithAString(commandName, this);
64 G4String guidance = "Select type of the field";
65 fFieldTypeCmd->SetGuidance(guidance);
66 fFieldTypeCmd->SetParameterName("FieldType", false);
67 G4String candidates;
71 candidates += " ";
72 }
73 fFieldTypeCmd->SetCandidates(candidates);
74 fFieldTypeCmd->AvailableForStates(
76
77 commandName = directoryName;
78 commandName.append("equationType");
79 fEquationTypeCmd = new G4UIcmdWithAString(commandName, this);
80 guidance = "Select type of the equation of motion of a particle in a field";
81 fEquationTypeCmd->SetGuidance(guidance);
82 fEquationTypeCmd->SetParameterName("EquationType", false);
83 candidates = "";
87 candidates += " ";
88 }
89 fEquationTypeCmd->SetCandidates(candidates);
90 fEquationTypeCmd->AvailableForStates(
92
93 commandName = directoryName;
94 commandName.append("stepperType");
95 fStepperTypeCmd = new G4UIcmdWithAString(commandName, this);
96 guidance =
97 "Select type of the the integrator of particle's equation of motion in a "
98 "field";
99 fStepperTypeCmd->SetGuidance(guidance);
100 fStepperTypeCmd->SetParameterName("StepperType", false);
101 candidates = "";
106 candidates += " ";
107 }
108 fStepperTypeCmd->SetCandidates(candidates);
109 fStepperTypeCmd->AvailableForStates(
111
112 commandName = directoryName;
113 commandName.append("setMinimumStep");
114 fSetMinimumStepCmd = new G4UIcmdWithADoubleAndUnit(commandName, this);
115 fSetMinimumStepCmd->SetGuidance("Set minimum step in G4ChordFinder");
116 fSetMinimumStepCmd->SetParameterName("StepMinimum", false);
117 fSetMinimumStepCmd->SetDefaultUnit("mm");
118 fSetMinimumStepCmd->SetUnitCategory("Length");
119 fSetMinimumStepCmd->AvailableForStates(
121
122 commandName = directoryName;
123 commandName.append("setDeltaChord");
124 fSetDeltaChordCmd = new G4UIcmdWithADoubleAndUnit(commandName, this);
125 fSetDeltaChordCmd->SetGuidance("Set delta chord in G4ChordFinder");
126 fSetDeltaChordCmd->SetParameterName("DeltaChord", false);
127 fSetDeltaChordCmd->SetDefaultUnit("mm");
128 fSetDeltaChordCmd->SetUnitCategory("Length");
129 fSetDeltaChordCmd->AvailableForStates(
131
132 commandName = directoryName;
133 commandName.append("setDeltaOneStep");
134 fSetDeltaOneStepCmd = new G4UIcmdWithADoubleAndUnit(commandName, this);
135 fSetDeltaOneStepCmd->SetGuidance(
136 "Set delta one step in global field manager");
137 fSetDeltaOneStepCmd->SetParameterName("DeltaOneStep", false);
138 fSetDeltaOneStepCmd->SetDefaultUnit("mm");
139 fSetDeltaOneStepCmd->SetUnitCategory("Length");
140 fSetDeltaOneStepCmd->AvailableForStates(
142
143 commandName = directoryName;
144 commandName.append("setDeltaIntersection");
145 fSetDeltaIntersectionCmd = new G4UIcmdWithADoubleAndUnit(commandName, this);
146 fSetDeltaIntersectionCmd->SetGuidance(
147 "Set delta intersection in global field manager");
148 fSetDeltaIntersectionCmd->SetParameterName("DeltaIntersection", false);
149 fSetDeltaIntersectionCmd->SetDefaultUnit("mm");
150 fSetDeltaIntersectionCmd->SetUnitCategory("Length");
151 fSetDeltaIntersectionCmd->AvailableForStates(
153
154 commandName = directoryName;
155 commandName.append("setMinimumEpsilonStep");
156 fSetMinimumEpsilonStepCmd = new G4UIcmdWithADouble(commandName, this);
157 fSetMinimumEpsilonStepCmd->SetGuidance(
158 "Set minimum epsilon step in global field manager");
159 fSetMinimumEpsilonStepCmd->SetParameterName("MinimumEpsilonStep", false);
160 fSetMinimumEpsilonStepCmd->AvailableForStates(
162
163 commandName = directoryName;
164 commandName.append("setMaximumEpsilonStep");
165 fSetMaximumEpsilonStepCmd = new G4UIcmdWithADouble(commandName, this);
166 fSetMaximumEpsilonStepCmd->SetGuidance(
167 "Set maximum epsilon step in global field manager");
168 fSetMaximumEpsilonStepCmd->SetParameterName("MaximumEpsilonStep", false);
169 fSetMaximumEpsilonStepCmd->AvailableForStates(
171
172 commandName = directoryName;
173 commandName.append("setConstDistance");
174 fSetConstDistanceCmd = new G4UIcmdWithADoubleAndUnit(commandName, this);
175 fSetConstDistanceCmd->SetGuidance(
176 "Set the distance within which the field is considered constant.");
177 fSetConstDistanceCmd->SetGuidance(
178 "Non-zero value will trigger creating a cached magnetic field.");
179 fSetConstDistanceCmd->SetParameterName("ConstDistance", false);
180 fSetConstDistanceCmd->SetDefaultUnit("mm");
181 fSetConstDistanceCmd->SetUnitCategory("Length");
182 fSetConstDistanceCmd->SetRange("ConstDistance >= 0");
184
185 commandName = std::move(directoryName);
186 commandName.append("printParameters");
187 fPrintParametersCmd = new G4UIcmdWithoutParameter(commandName, this);
188 fPrintParametersCmd->SetGuidance("Prints all accuracy parameters.");
189 fPrintParametersCmd->AvailableForStates(
191}
G4FieldType
The available fields in Geant4.
@ kMagnetic
magnetic field
@ kCashKarpRKF45
G4CashKarpRKF45.
@ kUserStepper
User defined stepper.
G4String GetVolumeName() const
static G4String EquationTypeName(G4EquationType equation)
Return the equation type as a string.
static G4String StepperTypeName(G4StepperType stepper)
Return the stepper type as a string.
static G4String FieldTypeName(G4FieldType field)
Return the field type as a string.