CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/CondFormats/OptAlignObjects/src/OpticalAlignMeasurements.cc

Go to the documentation of this file.
00001 #include "CondFormats/OptAlignObjects/interface/OpticalAlignMeasurements.h"
00002 
00003 std::ostream & operator<<(std::ostream & os, const OpticalAlignMeasurements & r)
00004 {
00005 
00006   os << " There are " << r.oaMeasurements_.size() << " optical alignment objects." << std::endl;
00007   size_t max = r.oaMeasurements_.size();
00008   size_t xi = 0;
00009   while ( xi < max ) {
00010     os << "\t" << r.oaMeasurements_[xi];
00011     xi++;
00012   }
00013   return os;
00014 }