ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/System8/s8/S8Tree/interface/S8EventID.h
Revision: 1.2
Committed: Tue May 24 16:15:10 2011 UTC (13 years, 11 months ago) by samvel
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
Remove the S8Tree code

File Contents

# Content
1 /**
2 * EventID
3 * s8
4 *
5 * Created by Samvel Khalatian on Sep 28, 2010
6 * Copyright 2010, All rights reserved
7 */
8
9 #ifndef S8_EVENTID
10 #define S8_EVENTID
11
12 namespace s8
13 {
14 class EventID
15 {
16 public:
17 EventID() throw();
18 ~EventID() throw();
19
20 void reset();
21
22 int run() const;
23 int lumiBlock() const;
24 int event() const;
25
26
27
28 void setRun(const int &);
29 void setLumiBlock(const int &);
30 void setEvent(const int &);
31
32 private:
33 int _run;
34 int _lumiBlock;
35 int _event;
36 };
37 }
38
39 #endif