CMS 3D CMS Logo

SimBeamSpotObjects.cc
Go to the documentation of this file.
2 
3 #include <iostream>
4 
5 void SimBeamSpotObjects::print(std::stringstream& ss) const {
6  ss << "-----------------------------------------------------\n"
7  <<fX0<<std::endl;
8 }
9 
10 std::ostream& operator<< ( std::ostream& os, SimBeamSpotObjects beam ) {
11  std::stringstream ss;
12  beam.print(ss);
13  os << ss.str();
14  return os;
15 }
void print(std::stringstream &ss) const
std::ostream & operator<<(std::ostream &os, SimBeamSpotObjects beam)