ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/src/TrackObj.cc
Revision: 1.2
Committed: Wed Apr 24 19:54:35 2013 UTC (12 years ago) by konec
Content type: text/plain
Branch: MAIN
Changes since 1.1: +8 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 konec 1.1 #include "UserCode/L1RpcTriggerAnalysis/interface/TrackObj.h"
2     ClassImp(TrackObj)
3 konec 1.2
4     ostream & operator<< (ostream &out, const TrackObj &o)
5     {
6     out<<"TrackObj: ";
7     out <<" pt: "<<o.thePt<<", eta: "<<o.theEta<<", phi: "<<o.thePhi;
8     return out;
9     }
10