Geant4-11
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

◆ operator<<()

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

Definition at line 37 of file G4Point3DList.cc.

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