Jpp 19.3.0-rc.3
the software that should make you happy
Loading...
Searching...
No Matches
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 */
13namespace JDATABASE {}
14namespace JPP { using namespace JDATABASE; }
15
16namespace 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
35 };
36}
37
38#endif
Auxiliary classes and methods for database I/O.
Definition JAHRS.hh:14
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
std::string UNIT_NAME
Definition JAllParams.hh:30
std::string SUBSYSTEMID
Definition JAllParams.hh:26
std::string DESCRIPTION
Definition JAllParams.hh:27
std::string UNIT_EASY_SCALE
Definition JAllParams.hh:31
static const char *const getName()
Table name.
Definition JAllParams.hh:21
ClassDef(JAllParams, 1)