/** @file * $Source: /home/cvsmanager/yoda/event/RunInfo.h,v $ * $Id: RunInfo.h,v 5.1 2006/02/04 12:37:43 kusanagi Exp $ * $Author: kusanagi $ * * Implementation of the default functions of the Algorithm class. */ #ifndef RUN_INFO_H #define RUN_INFO_H //#include "root/TObject.h" //#include "root/TString.h" #include //Substituted by Maurizio 05 Feb 2004 #include //Substituted by Maurizio 05 Feb 2004 namespace pamela { class PamelaRun; /** * Information about a data processing run: Who did it, where did he it, * when the data were processed etc. */ class RunInfo: public TObject { private: TString UserName; TString HostName; TString DataPath; TString Time; int RunNumber; public: RunInfo(pamela::PamelaRun*); RunInfo(void); virtual ~RunInfo(void); ClassDef(RunInfo, 1) }; } #endif /* RUN_INFO_H */