ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/RunInfo.h
Revision: 1.3
Committed: Tue Jun 24 14:01:41 2008 UTC (16 years, 10 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.2: +2 -3 lines
Log Message:
Added Look-ahead event header. Cleanup.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: RunInfo.h,v 1.2 2008/06/23 19:39:51 loizides Exp $
3 //
4 // RunInfo
5 //
6 //
7 // Authors: C.Loizides
8 //--------------------------------------------------------------------------------------------------
9
10 #ifndef DATATREE_RUNINFO_H
11 #define DATATREE_RUNINFO_H
12
13 #include "MitAna/DataTree/interface/Types.h"
14
15 namespace mithep
16 {
17 class RunInfo
18 {
19 public:
20 RunInfo() : fRunNum(0) {}
21 RunInfo(UInt_t run) : fRunNum(run) {}
22 virtual ~RunInfo() {}
23
24 UInt_t RunNum() const { return fRunNum; }
25 void SetRunNum(UInt_t i) { fRunNum=i; }
26
27 protected:
28 UInt_t fRunNum; // run number
29
30 ClassDef(RunInfo, 1) // Run info class
31 };
32 }
33 #endif