#include "TMatrixD.h"
Go to the source code of this file.
Namespaces | |
namespace | edm |
Classes | |
class | DTSurvey |
Implements a set of measurements given by survey, tipically a wheel. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &, const DTSurvey &) |
std::ostream& operator<< | ( | std::ostream & | , | |
const DTSurvey & | ||||
) |
Definition at line 156 of file DTSurvey.cc.
References DTSurvey::getChamber(), and DTSurveyChamber::getNumberPoints().
00156 { 00157 00158 for(int stationCounter = 0; stationCounter < 4; stationCounter++) { 00159 for(int sectorCounter = 0; sectorCounter < 14; sectorCounter++) { 00160 if(obj.getChamber(stationCounter,sectorCounter)->getNumberPoints() > 2) { 00161 const DTSurveyChamber *m_chamber = obj.getChamber(stationCounter, sectorCounter); 00162 flux << *m_chamber; 00163 } 00164 } 00165 } 00166 return flux; 00167 }