CMS 3D CMS Logo

Classes | Namespaces | Functions

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/Alignment/SurveyAnalysis/interface/DTSurvey.h File Reference

#include "TMatrixD.h"

Go to the source code of this file.

Classes

class  DTSurvey

Namespaces

namespace  edm
 

A PluginFactory for concrete instances of class KalmanAlignmentMetricsUpdator.


Functions

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

Function Documentation

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

Definition at line 158 of file DTSurvey.cc.

References DTSurvey::getChamber(), and DTSurveyChamber::getNumberPoints().

                                                               {

  for(int stationCounter = 0; stationCounter < 4; stationCounter++) {
    for(int sectorCounter = 0; sectorCounter < 14; sectorCounter++) {
      if(obj.getChamber(stationCounter,sectorCounter)->getNumberPoints() > 2) {
        const DTSurveyChamber *m_chamber = obj.getChamber(stationCounter, sectorCounter);
        flux << *m_chamber;
      }
    }
  }
  return flux;
}