CMS 3D CMS Logo

Functions
OpticalAlignMeasurements.cc File Reference
#include "CondFormats/OptAlignObjects/interface/OpticalAlignMeasurements.h"

Go to the source code of this file.

Functions

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

Function Documentation

◆ operator<<()

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

Definition at line 3 of file OpticalAlignMeasurements.cc.

References SiStripPI::max, l1tGTMenu_BTagSeeds_cff::os, alignCSCRings::r, and protons_cff::xi.

3  {
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 }