Revision: | 1.3 |
Committed: | Wed Apr 24 19:54:35 2013 UTC (12 years ago) by konec |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | Artur_11_07_2013_B, Artur_11_07_2013_A, Artur_11_07_2013, Artur_28_06_2013, HEAD |
Changes since 1.2: | +2 -0 lines |
Log Message: | *** empty log message *** |
# | User | Rev | Content |
---|---|---|---|
1 | konec | 1.1 | #ifndef EventObj_H |
2 | #define EventObj_H | ||
3 | konec | 1.2 | #include "TObject.h" |
4 | konec | 1.3 | #include <iostream> |
5 | konec | 1.2 | |
6 | struct EventObj : public TObject { | ||
7 | konec | 1.1 | unsigned int bx,id,lumi,run; |
8 | konec | 1.2 | ULong64_t time, orbit; |
9 | ClassDef(EventObj,1) | ||
10 | konec | 1.3 | friend ostream & operator<< (ostream &out, const EventObj&o); |
11 | konec | 1.1 | }; |
12 | #endif |