#include <G4Point3DList.hh>
Inheritance diagram for G4Point3DList:

Public Types | |
| typedef std::vector< G4Point3D >::iterator | iterator |
Public Member Functions | |
| virtual | ~G4Point3DList () |
Friends | |
| std::ostream & | operator<< (std::ostream &os, const G4Point3DList &points) |
Definition at line 43 of file G4Point3DList.hh.
| typedef std::vector<G4Point3D>::iterator G4Point3DList::iterator |
| G4Point3DList::~G4Point3DList | ( | ) | [virtual] |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const G4Point3DList & | points | |||
| ) | [friend] |
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 }
1.4.7