CMS 3D CMS Logo

Classes | Functions

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/CondFormats/OptAlignObjects/interface/OpticalAlignMeasurements.h File Reference

#include "CondFormats/OptAlignObjects/interface/OpticalAlignMeasurementInfo.h"
#include <vector>
#include <iostream>

Go to the source code of this file.

Classes

class  OpticalAlignMeasurements

Functions

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

Function Documentation

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

Definition at line 3 of file OpticalAlignMeasurements.cc.

References max(), and OpticalAlignMeasurements::oaMeasurements_.

{

  os << " There are " << r.oaMeasurements_.size() << " optical alignment objects." << std::endl;
  size_t max = r.oaMeasurements_.size();
  size_t xi = 0;
  while ( xi < max ) {
    os << "\t" << r.oaMeasurements_[xi];
    xi++;
  }
  return os;
}