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

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 loizides 1.3 // $Id: RunInfo.h,v 1.2 2008/06/23 19:39:51 loizides Exp $
3 loizides 1.1 //
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 loizides 1.2 UInt_t fRunNum; // run number
29 loizides 1.1
30 loizides 1.3 ClassDef(RunInfo, 1) // Run info class
31 loizides 1.1 };
32     }
33     #endif