#include "G4Point3DList.hh"
#include "G4ios.hh"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const G4Point3DList &points) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const G4Point3DList & | points | |||
) |
Definition at line 38 of file G4Point3DList.cc.
00039 { 00040 os << "G4Point3DList[" << points.size() << "]: "; 00041 for (size_t i = 0; i < points.size(); i++) os << points[i]; 00042 return os; 00043 }