1 |
pam-rm2 |
1.1 |
/** @file |
2 |
|
|
* $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/event/RunInfo.h,v $ |
3 |
|
|
* $Id: RunInfo.h,v 6.0 2006/02/07 17:11:07 kusanagi Exp $ |
4 |
|
|
* $Author: kusanagi $ |
5 |
|
|
* |
6 |
|
|
* Implementation of the default functions of the Algorithm class. |
7 |
|
|
*/ |
8 |
|
|
#ifndef RUN_INFO_H |
9 |
|
|
#define RUN_INFO_H |
10 |
|
|
|
11 |
|
|
//#include "root/TObject.h" |
12 |
|
|
//#include "root/TString.h" |
13 |
|
|
|
14 |
|
|
#include <TObject.h> //Substituted by Maurizio 05 Feb 2004 |
15 |
|
|
#include <TString.h> //Substituted by Maurizio 05 Feb 2004 |
16 |
|
|
|
17 |
|
|
namespace pamela { |
18 |
|
|
class PamelaRun; |
19 |
|
|
/** |
20 |
|
|
* Information about a data processing run: Who did it, where did he it, |
21 |
|
|
* when the data were processed etc. |
22 |
|
|
*/ |
23 |
|
|
class RunInfo: public TObject { |
24 |
|
|
private: |
25 |
|
|
TString UserName; |
26 |
|
|
TString HostName; |
27 |
|
|
TString DataPath; |
28 |
|
|
TString Time; |
29 |
|
|
int RunNumber; |
30 |
|
|
public: |
31 |
|
|
RunInfo(pamela::PamelaRun*); |
32 |
|
|
RunInfo(void); |
33 |
|
|
virtual ~RunInfo(void); |
34 |
|
|
ClassDef(RunInfo, 1) |
35 |
|
|
}; |
36 |
|
|
} |
37 |
|
|
|
38 |
|
|
#endif /* RUN_INFO_H */ |