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 |
|