--- DarthVader/RunInfo/inc/RunInfo.h 2006/09/04 15:43:49 1.4 +++ DarthVader/RunInfo/inc/RunInfo.h 2014/08/27 14:44:33 1.10 @@ -12,12 +12,37 @@ // #include +class ProcInfo : public TObject { + + private: + + public: + UInt_t runID; ///< ID of the processed run (input from DV) + TString date; ///< processing date and time + TString commandLine; ///< input command line + TString outputFilename; ///< output filename + TString localDir; ///< workiing directory + TString uname; ///< local machine and arch (output of "uname -a") + TString DB; ///< database used for this processing + // + // Default constructor + // + ProcInfo(); + + void Clear(Option_t *t=""); + ProcInfo* GetProcInfo(){return this;}; + // + ClassDef(ProcInfo,1); + // +}; class SoftInfo : public TObject { private: public: + TString DV_ver; + TString ORB_ver; TString TRIG_ver; TString TOF_ver; TString AC_ver; @@ -25,18 +50,18 @@ TString CAL_ver; TString S4_ver; TString ND_ver; - TString ORB_ver; // // Default constructor // SoftInfo(); - void Clear(); + void Clear(Option_t *t=""); void GetLevel2Struct(cSoftInfo *l2) const; SoftInfo* GetSoftInfo(){return this;}; + UInt_t GetSWinfo(TString DEC); // - ClassDef(SoftInfo,1); + ClassDef(SoftInfo,2); // }; @@ -64,9 +89,12 @@ // SoftInfo *version; // + // GL_RUN *glrun; + // // Default constructor // ItoRunInfo(); + ~ItoRunInfo(); // // Other constructors... // @@ -82,14 +110,16 @@ // Int_t Update(UInt_t run, TString Detector, TString Version); Int_t Read(UInt_t run); + void Write(); Int_t GetRunInfo(UInt_t run); UInt_t GetRunForEntry(UInt_t entry); void Close(); - void Clear(); + void Clear(Option_t *t=""); // void *GetPointerToSI(){return &version;}; void *GetPointerToRI(){return this;}; - TChain *LoadRunInfoTree(TList *fl); + //void *GetPointerToRI(){return &glrun;}; + TChain *GetRunTree(TList *fl); // UInt_t GetRunEntries(){return(totnorun);}; UInt_t GetNoRun(){return(norun);}; @@ -97,10 +127,10 @@ Bool_t IsReprocessing(){return(reprocessing);}; UInt_t GetFirstEntry(){return(first_file_entry);}; UInt_t GetLastEntry(){return(last_file_entry-1);}; - UInt_t GetEntries(){return(last_file_entry-1-first_file_entry);}; + UInt_t GetEntries(){Long64_t en = last_file_entry-1-first_file_entry; if ( en < 0LL ) en = 0LL; return((UInt_t)en);}; UInt_t GetFileEntries(){return(file_entries);}; // - ClassDef(ItoRunInfo,1); + ClassDef(ItoRunInfo,3); // };