source: trunk/MagicSoft/Mars/mreport/MReportRun.h@ 2876

Last change on this file since 2876 was 2728, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 511 bytes
Line 
1#ifndef MARS_MReportRun
2#define MARS_MReportRun
3
4#ifndef MARS_MReport
5#include "MReport.h"
6#endif
7
8class MReportRun : public MReport
9{
10private:
11 Int_t fRunNumber;
12 TString fSourceName;
13
14 Bool_t InterpreteBody(TString &str);
15
16public:
17 MReportRun();
18
19 const TString &GetSourceName() const { return fSourceName; }
20 TString GetSourceName() { return fSourceName; }
21
22 Int_t GetRunNumber() const { return fRunNumber; }
23
24 ClassDef(MReportRun, 0) // Class for RUN-REPORT information
25};
26
27#endif
Note: See TracBrowser for help on using the repository browser.