ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/src/MuonObj.cc
Revision: 1.2
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.1: +14 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #include "UserCode/L1RpcTriggerAnalysis/interface/MuonObj.h"
2 ClassImp(MuonObj)
3
4 ostream & operator<< (ostream &out, const MuonObj &o)
5 {
6 out<<(TrackObj)o <<" MuonObj: ";
7 out <<" stat: "<<o.nMatchedStations;
8 out <<" hits: "<<o.nTrackerHits<<"_"<<o.nDTHits<<"_"<<o.nCSCHits<<"_"<<o.nRPCHits;
9 if (o.isTracker()) out << "_TRK";
10 if (o.isOuter()) out << "_OUT";
11 if (o.isGlobal()) out << "_GLB";
12 out <<" #AllMuons: "<<o.nAllMuons;
13 if (o.isUnique) out<<"_UNIQUE";
14 return out;
15 }
16
17