42 parameterType = theType;
48 parameterName = theName;
49 parameterType = theType;
50 omittable = theOmittable;
60 if (!parameterGuidance.empty()) {
63 G4cout <<
" Parameter type : " << parameterType <<
G4endl;
70 if (currentAsDefaultFlag) {
71 G4cout <<
" Default value : taken from the current value" <<
G4endl;
73 else if (!defaultValue.empty()) {
76 if (!rangeExpression.empty()) {
77 G4cout <<
" Parameter range : " << rangeExpression <<
G4endl;
79 if (!parameterCandidate.empty()) {
80 G4cout <<
" Candidates : " << parameterCandidate <<
G4endl;
105 char type = (char)std::toupper(parameterType);
108 ed <<
"This method can be used only for a string-type parameter that is "
109 "used to specify a unit.\n"
110 <<
"This parameter <" << parameterName <<
"> is defined as ";
137 if (!TypeCheck(newValue)) {
143 if (!CandidateCheck(newValue)) {
150G4bool G4UIparameter::CandidateCheck(
const char* newValue)
152 if (parameterCandidate.empty()) {
156 G4Tokenizer candidateTokenizer(parameterCandidate);
158 while (!(aToken = candidateTokenizer()).empty()) {
159 if (aToken == newValue) {
163 G4cerr <<
"parameter value (" << newValue <<
") is not listed in the candidate List." <<
G4endl;
164 G4cerr <<
" Candidates are:";
165 G4Tokenizer candidateListTokenizer(parameterCandidate);
166 while (!(aToken = candidateListTokenizer()).empty()) {
175G4bool G4UIparameter::TypeCheck(
const char* newValue)
177 G4String newValueString(newValue);
178 char type = (char)std::toupper(parameterType);
182 G4cerr << newValue <<
": double value expected." <<
G4endl;
201 G4StrUtil::to_upper(newValueString);
202 if (newValueString ==
"Y" || newValueString ==
"N" || newValueString ==
"YES"
203 || newValueString ==
"NO" || newValueString ==
"1" || newValueString ==
"0"
204 || newValueString ==
"T" || newValueString ==
"F" || newValueString ==
"TRUE"
205 || newValueString ==
"FALSE")
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
@ fParameterOutOfCandidates
G4GLOB_DLL std::ostream G4cerr
G4GLOB_DLL std::ostream G4cout
static G4String CategoryOf(const char *unitName)
static G4String UnitsList(const char *unitCategory)
void SetDefaultValue(const char *theDefaultValue)
G4int CheckNewValue(const char *newValue)
void SetParameterCandidates(const char *theString)
void SetDefaultUnit(const char *theDefaultUnit)
G4bool RangeCheck(const G4UIparameter &p, const char *value)
G4bool IsDouble(const char *str)
G4bool IsInt(const char *str, short maxDigits)