#include "CondFormats/OptAlignObjects/interface/OpticalAlignInfo.h"
#include <vector>
#include <iostream>
Go to the source code of this file.
Classes | |
class | OpticalAlignments |
Description: Class for OpticalAlignments for use by COCOA. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &, const OpticalAlignments &) |
std::ostream& operator<< | ( | std::ostream & | , | |
const OpticalAlignments & | ||||
) |
Definition at line 3 of file OpticalAlignments.cc.
References lat::endl(), max, and OpticalAlignments::opticalAlignments_.
00004 { 00005 00006 os << " There are " << r.opticalAlignments_.size() << " optical alignment objects." << std::endl; 00007 size_t max = r.opticalAlignments_.size(); 00008 size_t oAi = 0; 00009 while ( oAi < max ) { 00010 os << "\t" << r.opticalAlignments_[oAi]; 00011 oAi++; 00012 } 00013 return os; 00014 }