#include <math.h>
#include <sstream>
Go to the source code of this file.
Classes | |
class | BeamSpotObjects |
Reconstructed beam spot object. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &, BeamSpotObjects beam) |
std::ostream& operator<< | ( | std::ostream & | , | |
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 }