#include "CondFormats/BeamSpotObjects/interface/BeamSpotObjects.h"
#include <iostream>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, BeamSpotObjects beam) |
std::ostream& operator<< | ( | std::ostream & | os, | |
BeamSpotObjects | beam | |||
) |
Definition at line 18 of file BeamSpotObjects.cc.
References BeamSpotObjects::print(), and ss.
00018 { 00019 std::stringstream ss; 00020 beam.print(ss); 00021 os << ss.str(); 00022 return os; 00023 }