ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/src/EventObj.cc
Revision: 1.3
Committed: Thu Jul 11 11:25:22 2013 UTC (11 years, 9 months ago) by akalinow
Content type: text/plain
Branch: MAIN
CVS Tags: Artur_11_07_2013_B, Artur_11_07_2013_A, Artur_11_07_2013, HEAD
Changes since 1.2: +3 -0 lines
Error occurred while calculating annotation data.
Log Message:
*last commit before migration to Git.

File Contents

# Content
1 #include "UserCode/L1RpcTriggerAnalysis/interface/EventObj.h"
2
3
4 ClassImp(EventObj)
5 ostream & operator<< (ostream &out, const EventObj &o) {
6 out <<"run: "<< o.run <<" event: "<<o.id<<" lumi: "<<o.lumi;
7 return out;
8 }
9
10