Jpp
JAHRS.hh
Go to the documentation of this file.
1 #ifndef __JDB_JAHRS__
2 #define __JDB_JAHRS__
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 JAHRS :
18  public TObject
19  {
20  static const char* const getName() { return "ahrs"; } //!< Table name
21 
22  int DETID; ///< constraint
23  int RUN;
24  long long int UNIXTIME;
25  int DUID;
26  int FLOORID;
27  std::string CLBUPI;
28  int DOMID;
29  double AHRS_A0;
30  double AHRS_A1;
31  double AHRS_A2;
32  double AHRS_G0;
33  double AHRS_G1;
34  double AHRS_G2;
35  double AHRS_H0;
36  double AHRS_H1;
37 
38  ClassDef(JAHRS, 1);
39  };
40 }
41 
42 #endif
TObject
Definition: JRoot.hh:19
JDATABASE::JAHRS::AHRS_A2
double AHRS_A2
Definition: JAHRS.hh:31
JDATABASE::JAHRS::AHRS_G0
double AHRS_G0
Definition: JAHRS.hh:32
JDATABASE::JAHRS::DUID
int DUID
Definition: JAHRS.hh:25
JDATABASE::JAHRS::AHRS_H1
double AHRS_H1
Definition: JAHRS.hh:36
JDATABASE
Auxiliary classes and methods for database I/O.
Definition: JAHRS.hh:12
JPP
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Definition: JAAnetToolkit.hh:37
JDATABASE::JAHRS::FLOORID
int FLOORID
Definition: JAHRS.hh:26
JDATABASE::JAHRS::DOMID
int DOMID
Definition: JAHRS.hh:28
JDATABASE::JAHRS
Definition: JAHRS.hh:17
JDATABASE::JAHRS::CLBUPI
std::string CLBUPI
Definition: JAHRS.hh:27
JDATABASE::JAHRS::AHRS_H0
double AHRS_H0
Definition: JAHRS.hh:35
JDATABASE::JAHRS::RUN
int RUN
Definition: JAHRS.hh:23
JDATABASE::JAHRS::DETID
int DETID
constraint
Definition: JAHRS.hh:22
JDATABASE::JAHRS::UNIXTIME
long long int UNIXTIME
Definition: JAHRS.hh:24
JDATABASE::JAHRS::AHRS_A1
double AHRS_A1
Definition: JAHRS.hh:30
JDATABASE::JAHRS::AHRS_G2
double AHRS_G2
Definition: JAHRS.hh:34
JDATABASE::JAHRS::AHRS_A0
double AHRS_A0
Definition: JAHRS.hh:29
JDATABASE::JAHRS::AHRS_G1
double AHRS_G1
Definition: JAHRS.hh:33
JDATABASE::JAHRS::ClassDef
ClassDef(JAHRS, 1)
JDATABASE::JAHRS::getName
static const char *const getName()
Table name.
Definition: JAHRS.hh:20