Jpp
JPersons.hh
Go to the documentation of this file.
1 #ifndef __JDB_JPERSONS__
2 #define __JDB_JPERSONS__
3 
4 #include <TROOT.h>
5 #include <TObject.h>
6 
7 #include <string>
8 
9 /**
10  * \author mdejong
11  */
12 namespace JDATABASE {}
13 namespace JPP { using namespace JDATABASE; }
14 
15 namespace JDATABASE {
16 
17  struct JPersons :
18  public TObject
19  {
20  static const char* const getName() { return "persons"; } //!< Table name
21 
22  std::string OID;
23  std::string LOGIN;
24  std::string NAME;
25  std::string SURNAME;
26  std::string LOCATIONID;
27  std::string CITY;
28  std::string ADDRESS;
29  std::string ACTIVESTATUS;
30  std::string MEMBERSTATUS;
31  std::string AUTHORSTATUS;
32 
33  ClassDef(JPersons, 1);
34  };
35 }
36 
37 #endif
TObject
Definition: JRoot.hh:19
JDATABASE::JPersons::getName
static const char *const getName()
Table name.
Definition: JPersons.hh:20
JDATABASE::JPersons::SURNAME
std::string SURNAME
Definition: JPersons.hh:25
JDATABASE::JPersons::ClassDef
ClassDef(JPersons, 1)
JDATABASE::JPersons
Definition: JPersons.hh:17
JDATABASE::JPersons::LOCATIONID
std::string LOCATIONID
Definition: JPersons.hh:26
JDATABASE
Auxiliary classes and methods for database I/O.
Definition: JAHRS.hh:12
JDATABASE::JPersons::CITY
std::string CITY
Definition: JPersons.hh:27
JPP
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Definition: JAAnetToolkit.hh:37
JDATABASE::JPersons::MEMBERSTATUS
std::string MEMBERSTATUS
Definition: JPersons.hh:30
JDATABASE::JPersons::ADDRESS
std::string ADDRESS
Definition: JPersons.hh:28
JDATABASE::JPersons::NAME
std::string NAME
Definition: JPersons.hh:24
JDATABASE::JPersons::OID
std::string OID
Definition: JPersons.hh:22
JDATABASE::JPersons::ACTIVESTATUS
std::string ACTIVESTATUS
Definition: JPersons.hh:29
JDATABASE::JPersons::AUTHORSTATUS
std::string AUTHORSTATUS
Definition: JPersons.hh:31
JDATABASE::JPersons::LOGIN
std::string LOGIN
Definition: JPersons.hh:23