ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DefaultHepRepAttDef.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file DefaultHepRepAttDef.cc
1 // Copyright FreeHEP, 2005.
2 
3 #include <iostream>
4 #include <cstring>
5 #include <cctype>
6 #include <algorithm>
7 
9 
10 using namespace std;
11 using namespace HEPREP;
12 
16 namespace cheprep {
17 
18 DefaultHepRepAttDef::DefaultHepRepAttDef(string aName, string aDesc, string aCategory, string anExtra)
19  : name(aName), desc(aDesc), category(aCategory), extra(anExtra) {
20 }
21 
23 }
24 
27 }
28 
30  return name;
31 }
32 
34  string s = name;
35  transform(s.begin(), s.end(), s.begin(), (int(*)(int)) tolower);
36  return s;
37 }
38 
40  return desc;
41 }
42 
44  return category;
45 }
46 
48  return extra;
49 }
50 
51 } // cheprep