|
||||
File indexing completed on 2024-04-06 12:02:25
0001 #include "CondFormats/OptAlignObjects/interface/OpticalAlignMeasurements.h" 0002 0003 std::ostream& operator<<(std::ostream& os, const OpticalAlignMeasurements& r) { 0004 os << " There are " << r.oaMeasurements_.size() << " optical alignment objects." << std::endl; 0005 size_t max = r.oaMeasurements_.size(); 0006 size_t xi = 0; 0007 while (xi < max) { 0008 os << "\t" << r.oaMeasurements_[xi]; 0009 xi++; 0010 } 0011 return os; 0012 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |