![]() |
KaliVeda
Toolkit for HIC analysis
|
Simple cross-referenced database structure.
KVDataBase, along with KVDBKey, KVDBRecord and KVDBTable, are base classes for the implementation of simple cross-referenced database structures. The database is made up of tables with unique names, each table contains a list of records. Records in different tables may be linked together using keys, providing cross-referenced entries.
All these objects are ROOT TFolder objects. The KVDataBase object is added to the ROOT folder and may be browsed in the TBrowser.
An example of use is given here:
After setting up the database in this way, some typical output would be:
Definition at line 137 of file KVDataBase.h.
#include <KVDataBase.h>
Public Member Functions | |
KVDataBase () | |
KVDataBase (const Char_t *name) | |
KVDataBase (const Char_t *name, const Char_t *title) | |
virtual | ~ KVDataBase () |
virtual KVDBTable * | AddTable (const Char_t *name, const Char_t *title, Bool_t unique=kFALSE) |
virtual Bool_t | AddTable (KVDBTable *table) |
virtual KVDBRecord * | GetRecord (const Char_t *table_name, const Char_t *rec_name) const |
virtual KVDBTable * | GetTable (const Char_t *table) const |
virtual TList * | GetTables () const |
virtual void | Print (Option_t *option="") const |
Private Attributes | |
TString | fFolderName |
KVDataBase::KVDataBase | ( | ) |
Definition at line 31 of file KVDataBase.cpp.
KVDataBase::KVDataBase | ( | const Char_t * | name | ) |
Definition at line 53 of file KVDataBase.cpp.
KVDataBase::KVDataBase | ( | const Char_t * | name, |
const Char_t * | title | ||
) |
Definition at line 41 of file KVDataBase.cpp.
|
virtual |
|
virtual |
Add a table to the list of tables and check if the new table's name already exists. If it exists the table is not added and null pointer is returned, otherwise a new table is created and added to the list and its address is returned. Table with this name already in DB ?
Definition at line 109 of file KVDataBase.cpp.
|
virtual |
Add a table to the list of available tables and return kTRUE it's added. As each table must have a unique name we check if the new table's name already exists, if not the table is added otherwise it's not added and the method return kFALSE.
table with this name already in DB ?
Definition at line 84 of file KVDataBase.cpp.
|
virtual |
Return the KVDBRecord rec_name found in the table table_name
Definition at line 133 of file KVDataBase.cpp.
|
inlinevirtual |
Definition at line 159 of file KVDataBase.h.
|
inlinevirtual |
Definition at line 164 of file KVDataBase.h.
|
virtual |
Definition at line 152 of file KVDataBase.cpp.
|
private |
Definition at line 139 of file KVDataBase.h.