Jpp  16.0.0-rc.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JAllParams.hh
Go to the documentation of this file.
1 #ifndef __JDB_JALLPARAMS__
2 #define __JDB_JALLPARAMS__
3 
4 #include <TROOT.h>
5 #include <TObject.h>
6 
7 #include <string>
8 
9 
10 /**
11  * \author mdejong
12  */
13 namespace JDATABASE {}
14 namespace JPP { using namespace JDATABASE; }
15 
16 namespace JDATABASE {
17 
18  struct JAllParams :
19  public TObject
20  {
21  static const char* const getName() { return "allparams"; } //!< Table name
22 
23  std::string OID;
24  std::string NAME;
25  std::string MAPNAME;
26  std::string SUBSYSTEMID;
27  std::string DESCRIPTION;
28  std::string TYPE;
29  std::string IO_TYPE;
30  std::string UNIT_NAME;
31  std::string UNIT_EASY_SCALE;
33 
34  ClassDef(JAllParams, 1);
35  };
36 }
37 
38 #endif
std::string SUBSYSTEMID
Definition: JAllParams.hh:26
ClassDef(JAllParams, 1)
Definition: JRoot.hh:19
std::string UNIT_NAME
Definition: JAllParams.hh:30
std::string IO_TYPE
Definition: JAllParams.hh:29
std::string DESCRIPTION
Definition: JAllParams.hh:27
static const char *const getName()
Table name.
Definition: JAllParams.hh:21
std::string UNIT_EASY_SCALE
Definition: JAllParams.hh:31
std::string MAPNAME
Definition: JAllParams.hh:25