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
JDetectors.hh
Go to the documentation of this file.
1 #ifndef __JDB_JDETECTORS__
2 #define __JDB_JDETECTORS__
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 JDetectors :
19  public TObject
20  {
21  static const char* const getName() { return "detectors"; } //!< Table name
22 
23  std::string OID;
25  std::string LOCATIONID;
26  std::string CITY;
27 
28  ClassDef(JDetectors, 1);
29  };
30 }
31 
32 #endif
Definition: JRoot.hh:19
ClassDef(JDetectors, 1)
std::string LOCATIONID
Definition: JDetectors.hh:25
static const char *const getName()
Table name.
Definition: JDetectors.hh:21