Go to the documentation of this file.00001 #include "CondFormats/BeamSpotObjects/interface/SimBeamSpotObjects.h"
00002
00003 #include <iostream>
00004
00005 void SimBeamSpotObjects::print(std::stringstream& ss) const {
00006 ss << "-----------------------------------------------------\n"
00007 <<fX0<<std::endl;
00008 }
00009
00010 std::ostream& operator<< ( std::ostream& os, SimBeamSpotObjects beam ) {
00011 std::stringstream ss;
00012 beam.print(ss);
00013 os << ss.str();
00014 return os;
00015 }