12 |
// |
// |
13 |
#include <RunInfoStruct.h> |
#include <RunInfoStruct.h> |
14 |
|
|
15 |
|
class ProcInfo : public TObject { |
16 |
|
|
17 |
|
private: |
18 |
|
|
19 |
|
public: |
20 |
|
UInt_t runID; ///< ID of the processed run (input from DV) |
21 |
|
TString date; ///< processing date and time |
22 |
|
TString commandLine; ///< input command line |
23 |
|
TString outputFilename; ///< output filename |
24 |
|
TString localDir; ///< workiing directory |
25 |
|
TString uname; ///< local machine and arch (output of "uname -a") |
26 |
|
TString DB; ///< database used for this processing |
27 |
|
// |
28 |
|
// Default constructor |
29 |
|
// |
30 |
|
ProcInfo(); |
31 |
|
|
32 |
|
void Clear(Option_t *t=""); |
33 |
|
ProcInfo* GetProcInfo(){return this;}; |
34 |
|
// |
35 |
|
ClassDef(ProcInfo,1); |
36 |
|
// |
37 |
|
}; |
38 |
|
|
39 |
class SoftInfo : public TObject { |
class SoftInfo : public TObject { |
40 |
|
|