CMS 3D CMS Logo

Classes | Namespaces | Functions
DTSurvey.h File Reference
#include "TMatrixD.h"

Go to the source code of this file.

Classes

class  DTSurvey
 
class  edm::ESHandle< T >
 

Namespaces

 edm
 HLT enums.
 

Functions

std::ostream & operator<< (std::ostream &, const DTSurvey &)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  ,
const DTSurvey  
)

Definition at line 165 of file DTSurvey.cc.

References getGTfromDQMFile::obj.

165  {
166  for (int stationCounter = 0; stationCounter < 4; stationCounter++) {
167  for (int sectorCounter = 0; sectorCounter < 14; sectorCounter++) {
168  if (obj.getChamber(stationCounter, sectorCounter)->getNumberPoints() > 2) {
169  const DTSurveyChamber *m_chamber = obj.getChamber(stationCounter, sectorCounter);
170  flux << *m_chamber;
171  }
172  }
173  }
174  return flux;
175 }