CMS 3D CMS Logo

OpticalAlignMeasurements.cc
Go to the documentation of this file.
2 
3 std::ostream& operator<<(std::ostream& os, const OpticalAlignMeasurements& r) {
4  os << " There are " << r.oaMeasurements_.size() << " optical alignment objects." << std::endl;
5  size_t max = r.oaMeasurements_.size();
6  size_t xi = 0;
7  while (xi < max) {
8  os << "\t" << r.oaMeasurements_[xi];
9  xi++;
10  }
11  return os;
12 }
std::ostream & operator<<(std::ostream &os, const OpticalAlignMeasurements &r)