5 #include "KVDBSystem.h"
6 #include "KVNumberList.h"
8 #include <KVFileReader.h>
10 #include "KVUnownedList.h"
25 fRuns = AddTable(
"Runs",
"List of available runs");
26 fRuns->SetDefaultFormat(
"Run %d");
27 fSystems = AddTable(
"Systems",
"List of available systems");
76 if (gExpDB ==
this) gExpDB =
nullptr;
95 for (UInt_t ii = first_run; ii <= last_run; ii++) {
115 Int_t rr = nl.
Next();
145 UInt_t run_ranges[][2])
154 for (UInt_t i = 0; i < rr_number; i++) {
165 UInt_t run_ranges[][2])
170 Error(
"LinkListToRunRanges",
171 "NULL pointer passed for parameter TList");
174 if (list->GetSize() == 0) {
175 Error(
"LinkListToRunRanges(TList*,UInt_t,UInt_t*)",
176 "The list is empty");
182 for (UInt_t ru_ra = 0; ru_ra < rr_number; ru_ra++) {
183 UInt_t first_run = run_ranges[ru_ra][0];
184 UInt_t last_run = run_ranges[ru_ra][1];
185 for (UInt_t i = first_run; i <= last_run; i++) {
205 Error(
"LinkListToRunRange",
206 "NULL pointer passed for parameter TList");
209 if (list->GetSize() == 0) {
210 Error(
"LinkListToRunRange(TList*,KVNumberList)",
211 "The list is empty");
279 Info(
"ReadSystemList()",
"Reading Systems parameters ...");
283 char next_char = fin.peek();
284 while (next_char !=
'+' && fin.good()) {
285 line.ReadLine(fin, kFALSE);
286 next_char = fin.peek();
289 while (fin.good() && !fin.eof() && next_char ==
'+') {
293 next_char = fin.peek();
298 Error(
"ReadSystemList()",
"Could not open file %s",
306 while ((run = (
KVDBRun*)nextRun())) {
342 sysfile <<
"# " <<
GetDBEnv(
"Systems") <<
" file written by "
343 << ClassName() <<
"::WriteSystemsFile on " << now.AsString() << endl;
344 cout <<
GetDBEnv(
"Systems") <<
" file written by "
345 << ClassName() <<
"::WriteSystemsFile on " << now.AsString() << endl;
347 if (strcmp(sys->GetName(),
"[unknown]")) {
394 rlistf <<
"# " <<
GetDBEnv(
"Runlist") <<
" file written by "
395 << ClassName() <<
"::WriteRunListFile on " << now.AsString() << endl;
396 cout <<
GetDBEnv(
"Runlist") <<
" file written by "
397 << ClassName() <<
"::WriteRunListFile on " << now.AsString() << endl;
403 while ((run = (
KVDBRun*) next_run())) {
410 Warning(
"WriteRunListFile()",
"run list is empty !!!");
521 if (cal_file_name.IsNull())
return kFALSE;
524 if (!array_name.IsNull()) {
525 cal_file_name.Prepend(Form(
"%s.", array_name.Data()));
561 printf(
"RUN\tSYSTEM\t\t\t\tTRIGGER\t\tEVENTS\t\tCOMMENTS\n");
562 printf(
"------------------------------------------------------------------------------------------------------------------\n");
567 printf(
"%4d\t%-30s\t%s\t\t%llu\t\t%s\n",
641 while ((dbr = (
KVDBRun*)next())) {
643 if ((last_run > 0 && dbr->
GetNumber() <= last_run)
644 || last_run == -1) total += dbr->
GetEvents();
660 Error(
"GetTotalEvents",
"No system with name : %s", system.Data());
666 while ((dbr = (
KVDBRun*)it())) {
720 if (comments_file ==
"")
return;
723 Info(
"ReadComments",
"Reading run comments in file %s...", fullpath.Data());
727 Error(
"ReadComments",
"Problem opening file %s", fullpath.Data());
747 while (!lruns.
End()) {
748 Int_t run = lruns.
Next();
static const Char_t * GetDataSetEnv(const Char_t *dataset, const Char_t *type, const Char_t *defval)
static Bool_t SearchKVFile(const Char_t *name, TString &fullpath, const Char_t *kvsubdir="")
static Bool_t SearchAndOpenKVFile(const Char_t *name, KVSQLite::database &dbfile, const Char_t *kvsubdir="")
static TPluginHandler * LoadPlugin(const Char_t *base, const Char_t *uri="0")
Record folder for the database.
virtual Bool_t AddLink(const Char_t *key_name, KVDBRecord *rec, Bool_t linkback=kTRUE)
virtual Int_t GetNumber() const
Description of an experimental run in database ,,.
ULong64_t GetEvents() const
void SetComments(const KVString &comments)
KVDBSystem * GetSystem() const
virtual void WriteRunListLine(std::ostream &, Char_t delim='|') const
const Char_t * GetTriggerString() const
const Char_t * GetComments() const
Database class used to store information on different colliding systems studied during an experiment....
virtual void Save(std::ostream &) const
void AddRun(KVDBRecord *)
virtual void Load(std::istream &)
virtual KVDBRecord * GetRecord(const Char_t *rec_name) const
Simple cross-referenced database structure.
Base class to describe database of an experiment ,,.
void AddSystem(KVDBSystem *r)
virtual ~KVExpDB()
Destructor.
virtual KVDBSystem * GetSystem(const Char_t *system) const
virtual void ReadComments()
virtual void ReadSystemList()
KVDBTable * fRuns
table of runs
virtual void LinkRecordToRun(KVDBRecord *rec, Int_t run)
KVDBRun * GetDBRun(Int_t number) const
virtual KVSeqCollection * GetRuns() const
TString GetCalibFileName(const Char_t *type) const
virtual void LinkListToRunRanges(TList *list, UInt_t rr_number, UInt_t run_ranges[][2])
Link the records contained in the list to the set of runs (see LinkRecordToRunRanges).
KVDBTable * fSystems
table of systems
virtual void PrintRuns(KVNumberList &) const
ULong64_t GetTotalEvents(int first_run, int last_run=-1) const
virtual KVSeqCollection * GetSystems() const
virtual void Save(const Char_t *)
TString fDBType
used by GetDBEnv
virtual void LinkRecordToRunRanges(KVDBRecord *rec, UInt_t rr_number, UInt_t run_ranges[][2])
virtual void LinkListToRunRange(TList *list, const KVNumberList &nl)
Link the records contained in the list to the set of runs (see LinkRecordToRunRanges).
void WriteSystemsFile() const
KVExpDB()
Default constructor.
const Char_t * GetDataSetDir() const
void init()
default initialisations
virtual void LinkRecordToRunRange(KVDBRecord *rec, UInt_t first_run, UInt_t last_run)
void SetDataSetDir(const Char_t *d)
static KVExpDB * MakeDataBase(const Char_t *name, const Char_t *datasetdir)
void WriteRunListFile() const
virtual TString GetDBEnv(const Char_t *) const
Bool_t OpenCalibFile(const Char_t *type, std::ifstream &fs) const
TString fDataSet
the name of the dataset to which this database is associated
Bool_t FindCalibFile(const Char_t *type, TString &fullpath, const TString &array_name="") const
Handle reading columns of numeric data in text files.
KVString GetCurrentLine()
ReadStatus ReadLine(const KVString &pattern="")
Int_t GetNparRead() const
KVString GetReadPar(Int_t pos) const
Bool_t OpenFileToRead(const KVString &filename)
Strings used to represent a set of ranges of values.
virtual TObject * At(Int_t idx) const
Extension of ROOT TString class which allows backwards compatibility with ROOT v3....
void Begin(TString delim) const
KVString Next(Bool_t strip_whitespace=kFALSE) const