1 |
samvel |
1.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
|