Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
parseargument.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file parseargument.cc
1 
2 
3 #include <stdlib.h>
4 
5 
6 int get_value(const char *arg, int *status)
7 {
8 
9  int value;
10  value = strtol(arg, 0,0);
11 
12  return value;
13 }
14 
15 unsigned int get_uvalue(const char *arg, int *status)
16 {
17 
18  unsigned int value;
19  value = strtoul(arg, 0,0);
20 
21  return value;
22 }
23