32 |
// |
// |
33 |
SoftInfo(); |
SoftInfo(); |
34 |
|
|
35 |
void Clear(); |
void Clear(Option_t *t=""); |
36 |
void GetLevel2Struct(cSoftInfo *l2) const; |
void GetLevel2Struct(cSoftInfo *l2) const; |
37 |
SoftInfo* GetSoftInfo(){return this;}; |
SoftInfo* GetSoftInfo(){return this;}; |
38 |
UInt_t GetSWinfo(TString DEC); |
UInt_t GetSWinfo(TString DEC); |
89 |
Int_t GetRunInfo(UInt_t run); |
Int_t GetRunInfo(UInt_t run); |
90 |
UInt_t GetRunForEntry(UInt_t entry); |
UInt_t GetRunForEntry(UInt_t entry); |
91 |
void Close(); |
void Close(); |
92 |
void Clear(); |
void Clear(Option_t *t=""); |
93 |
// |
// |
94 |
void *GetPointerToSI(){return &version;}; |
void *GetPointerToSI(){return &version;}; |
95 |
void *GetPointerToRI(){return this;}; |
void *GetPointerToRI(){return this;}; |
102 |
Bool_t IsReprocessing(){return(reprocessing);}; |
Bool_t IsReprocessing(){return(reprocessing);}; |
103 |
UInt_t GetFirstEntry(){return(first_file_entry);}; |
UInt_t GetFirstEntry(){return(first_file_entry);}; |
104 |
UInt_t GetLastEntry(){return(last_file_entry-1);}; |
UInt_t GetLastEntry(){return(last_file_entry-1);}; |
105 |
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);}; |
106 |
UInt_t GetFileEntries(){return(file_entries);}; |
UInt_t GetFileEntries(){return(file_entries);}; |
107 |
// |
// |
108 |
ClassDef(ItoRunInfo,1); |
ClassDef(ItoRunInfo,1); |