ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/EventObj.h
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 ***

File Contents

# Content
1 #ifndef EventObj_H
2 #define EventObj_H
3 #include "TObject.h"
4 #include <iostream>
5
6 struct EventObj : public TObject {
7 unsigned int bx,id,lumi,run;
8 ULong64_t time, orbit;
9 ClassDef(EventObj,1)
10 friend ostream & operator<< (ostream &out, const EventObj&o);
11 };
12 #endif