1 |
mocchiut |
1.1 |
/** @file |
2 |
|
|
* $Source: /repository/event/RunInfoYoda.h,v $ |
3 |
|
|
* $Id: RunInfoYoda.h,v 1.1 2008-03-11 14:26:19 messineo Exp $ |
4 |
|
|
* $Author: messineo $ |
5 |
|
|
* |
6 |
|
|
* Implementation of the default functions of the Algorithm class. |
7 |
|
|
*/ |
8 |
|
|
#ifndef RUN_INFO_YODA_H |
9 |
|
|
#define RUN_INFO_YODA_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 RunInfoYoda: public TObject { |
24 |
|
|
private: |
25 |
|
|
TString UserName; |
26 |
|
|
TString HostName; |
27 |
|
|
TString DataPath; |
28 |
|
|
TString Time; |
29 |
|
|
int RunNumber; |
30 |
|
|
public: |
31 |
|
|
RunInfoYoda(pamela::PamelaRun*); |
32 |
|
|
RunInfoYoda(void); |
33 |
|
|
virtual ~RunInfoYoda(void); |
34 |
|
|
ClassDef(RunInfoYoda, 1) |
35 |
|
|
}; |
36 |
|
|
} |
37 |
|
|
|
38 |
|
|
#endif /* RUN_INFO_YODA_H */ |