31#define G4UIparsing_hh 1
48 std::istringstream is(s);
57 std::ostringstream os;
67 auto tmpval = std::stoll(str);
68 if(tmpval > LONG_MAX || tmpval < LONG_MIN) {
69 G4cerr <<
"input string '" << str <<
"' out-of-range for conversion to 'long int' value" <<
G4endl;
74 auto tmpval = std::stol(str);
76 G4cerr <<
"input string '" << str <<
"' out-of-range for conversion to 'int' value" <<
G4endl;
88 if (*p ==
'+' || *p ==
'-') {
91 if (isdigit((
G4int)(*p)) != 0) {
92 while (isdigit((
G4int)(*p)) != 0) {
97 if (length > maxDigits) {
101 return ChkMax(str,maxDigits);
112 return IsInt(str, 7);
122 if (isdigit(*p) != 0) {
123 while (isdigit((
G4int)(*p)) != 0) {
137 if (*p ==
'e' || *p ==
'E') {
140 if (isdigit(*p) != 0) {
141 while (isdigit((
G4int)(*p)) != 0) {
147 if (*p ==
'e' || *p ==
'E') {
161 if (isdigit(*p) != 0) {
162 while (isdigit((
G4int)(*p)) != 0) {
168 if (*p ==
'e' || *p ==
'E') {
176 if (isdigit(*p) != 0) {
177 while (isdigit((
G4int)(*p)) != 0) {
183 if (*p ==
'e' || *p ==
'E') {
189 if (isdigit(*p) != 0) {
190 while (isdigit((
G4int)(*p)) != 0) {
196 if (*p ==
'e' || *p ==
'E') {
204 if (*p ==
'e' || *p ==
'E') {
207 if (isdigit(*p) != 0) {
208 while (isdigit((
G4int)(*p)) != 0) {
214 if (*p ==
'e' || *p ==
'E') {
230 result =
static_cast<G4int>(arg1 > arg2);
233 result =
static_cast<G4int>(arg1 >= arg2);
236 result =
static_cast<G4int>(arg1 < arg2);
239 result =
static_cast<G4int>(arg1 <= arg2);
242 result =
static_cast<G4int>(arg1 == arg2);
245 result =
static_cast<G4int>(arg1 != arg2);
248 G4cerr <<
"Parameter range: error at CompareInt" <<
G4endl;
260 result =
static_cast<G4int>(arg1 > arg2);
263 result =
static_cast<G4int>(arg1 >= arg2);
266 result =
static_cast<G4int>(arg1 < arg2);
269 result =
static_cast<G4int>(arg1 <= arg2);
272 result =
static_cast<G4int>(arg1 == arg2);
275 result =
static_cast<G4int>(arg1 != arg2);
278 G4cerr <<
"Parameter range: error at CompareInt" <<
G4endl;
290 result =
static_cast<G4int>(arg1 > arg2);
293 result =
static_cast<G4int>(arg1 >= arg2);
296 result =
static_cast<G4int>(arg1 < arg2);
299 result =
static_cast<G4int>(arg1 <= arg2);
302 result =
static_cast<G4int>(arg1 == arg2);
305 result =
static_cast<G4int>(arg1 != arg2);
308 G4cerr <<
"Parameter range: error at CompareDouble" <<
G4endl;
G4GLOB_DLL std::ostream G4cerr
G4bool RangeCheck(const G4UIparameter &p, const char *value)
G4bool IsDouble(const char *str)
G4bool ExpectExponent(const char *str)
G4bool ChkMax(const char *str, short maxDigits)
T StoT(const G4String &s)
G4int CompareLong(G4long arg1, G4int op, G4long arg2, G4int &errCode)
G4int CompareDouble(G4double arg1, G4int op, G4double arg2, G4int &errCode)
G4bool IsInt(const char *str, short maxDigits)
G4int CompareInt(G4int arg1, G4int op, G4int arg2, G4int &errCode)