![]() |
![]() |
#include "RecoLocalMuon/DTSegment/src/DTHitPairForFit.h"
#include <vector>
#include <set>
#include <iostream>
Go to the source code of this file.
Classes | |
class | DTSegmentCand |
A Candidate for a DT segment. More... | |
struct | DTSegmentCand::AssPointLessZ |
Functions | |
std::ostream & | operator<< (std::ostream &out, const DTSegmentCand::AssPoint &hit) |
std::ostream & | operator<< (std::ostream &out, const DTSegmentCand &seg) |
std::ostream& operator<< | ( | std::ostream & | out, | |
const DTSegmentCand::AssPoint & | hit | |||
) |
Definition at line 202 of file DTSegmentCand.cc.
00202 { 00203 // out << "Hits " << (hit.first)->localPosition(DTEnums::Left) << 00204 // " " << hit.second << " Lay " << (hit.first)->layerNumber() << endl; 00205 return out; 00206 }
std::ostream& operator<< | ( | std::ostream & | out, | |
const DTSegmentCand & | seg | |||
) |
Definition at line 197 of file DTSegmentCand.cc.
References DTSegmentCand::chi2(), and DTSegmentCand::nHits().
00197 { 00198 out << " chi2/nHits: " << seg.chi2() << "/" << seg.nHits() ; 00199 return out; 00200 }