#include "G4VisExtent.hh"#include "G4ios.hh"Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const G4VisExtent &e) |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const G4VisExtent & | e | |||
| ) |
Definition at line 83 of file G4VisExtent.cc.
References G4VisExtent::fXmax, G4VisExtent::fXmin, G4VisExtent::fYmax, G4VisExtent::fYmin, G4VisExtent::fZmax, and G4VisExtent::fZmin.
00083 { 00084 os << "G4VisExtent (bounding box):"; 00085 os << "\n X limits: " << e.fXmin << ' ' << e.fXmax; 00086 os << "\n Y limits: " << e.fYmin << ' ' << e.fYmax; 00087 os << "\n Z limits: " << e.fZmin << ' ' << e.fZmax; 00088 return os; 00089 }
1.4.7