186{
187 if ( command == fSetHnAsciiCmd.get() ) {
188 auto id = fSetHnAsciiCmd->GetNewIntValue(newValues);
190 }
191 else if ( command == fSetHnActivationCmd.get() ) {
192
193 std::vector<G4String> parameters;
195
197 auto counter = 0;
201 }
202 else {
203
204 fHelper->WarnAboutParameters(command, parameters.size());
205 }
206 }
207 else if ( command == fSetHnActivationAllCmd.get() ) {
208 auto activation = fSetHnActivationAllCmd->GetNewBoolValue(newValues);
210 }
211 else if ( command == fSetHnPlottingCmd.get() ) {
212
213 std::vector<G4String> parameters;
215
217 auto counter = 0;
221 }
222 else {
223
224 fHelper->WarnAboutParameters(command, parameters.size());
225 }
226 }
227 else if ( command == fSetHnPlottingAllCmd.get() ) {
228 auto activation = fSetHnPlottingAllCmd->GetNewBoolValue(newValues);
230 }
231 else if ( command == fSetHnFileNameCmd.get() ) {
232
233 std::vector<G4String> parameters;
235
237 auto counter = 0;
239 auto fileName = parameters[counter++];
241 }
242 else {
243
244 fHelper->WarnAboutParameters(command, parameters.size());
245 }
246 }
247 else if ( command == fSetHnFileNameAllCmd.get() ) {
248 auto fileName = newValues;
250 }
251}
void SetActivation(G4bool activation)
void SetFileName(G4int id, const G4String &fileName)
void SetAscii(G4int id, G4bool ascii)
void SetPlotting(G4int id, G4bool plotting)
std::size_t GetParameterEntries() const
static G4int ConvertToInt(const char *st)
static G4bool ConvertToBool(const char *st)
void Tokenize(const G4String &line, std::vector< G4String > &tokens)