26 lines
690 B
C++
26 lines
690 B
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4Point3DList.cc,v 1.3 1999/12/15 14:50:36 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
//
|
|
// John Allison July 1995
|
|
|
|
#include "G4Point3DList.hh"
|
|
|
|
#include "G4ios.hh"
|
|
|
|
G4Point3DList::~G4Point3DList () {}
|
|
|
|
G4std::ostream& operator << (G4std::ostream& os, const G4Point3DList& points)
|
|
{
|
|
os << "G4Point3DList[" << points.entries() << "]: ";
|
|
for (int i = 0; i < points.entries(); i++) os << points(i);
|
|
return os;
|
|
}
|