#include <math.h>
#include <sstream>
#include <cstring>
Go to the source code of this file.
Classes | |
class | BeamSpotObjects |
Functions | |
std::ostream & | operator<< (std::ostream &, BeamSpotObjects beam) |
std::ostream& operator<< | ( | std::ostream & | , |
BeamSpotObjects | beam | ||
) |
Definition at line 23 of file BeamSpotObjects.cc.
References BeamSpotObjects::print().
{ std::stringstream ss; beam.print(ss); os << ss.str(); return os; }