KaliVeda
Toolkit for HIC analysis
Loading...
Searching...
No Matches
KVDBParameterList.h
1
3
4#ifndef __KVDBPARAMETERLIST_H
5#define __KVDBPARAMETERLIST_H
6
7#include "KVDBRecord.h"
8#include "KVNameValueList.h"
9
17
19public:
20
22 KVDBParameterList(const Char_t* name, const Char_t* title = "")
23 : KVDBRecord(name, title)
24 {}
26 {
27 return &fParameters;
28 }
30 {
31 return &fParameters;
32 }
33 virtual ~KVDBParameterList() {}
34 void Print(Option_t* option = "") const;
35
36 ClassDef(KVDBParameterList, 1) //To store in a database some parameters list
37};
38
39#endif
char Char_t
const char Option_t
#define ClassDef(name, id)
char name[80]
To store calibration parameters in a database ,.
const KVNameValueList * GetParameters() const
KVNameValueList fParameters
KVNameValueList * GetParameters()
void Print(Option_t *option="") const
KVDBParameterList(const Char_t *name, const Char_t *title="")
Record folder for the database.
Definition KVDBRecord.h:43
Handles lists of named parameters with different types, a list of KVNamedParameter objects.