Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions
G4Point3DList.cc File Reference
#include "G4Point3DList.hh"
#include "G4ios.hh"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const G4Point3DList &points)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const G4Point3DList points 
)

Definition at line 38 of file G4Point3DList.cc.

39 {
40  os << "G4Point3DList[" << points.size() << "]: ";
41  for (size_t i = 0; i < points.size(); i++) os << points[i];
42  return os;
43 }