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

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const G4VisExtent &e)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const G4VisExtent e 
)

Definition at line 83 of file G4VisExtent.cc.

83  {
84  os << "G4VisExtent (bounding box):";
85  os << "\n X limits: " << e.fXmin << ' ' << e.fXmax;
86  os << "\n Y limits: " << e.fYmin << ' ' << e.fYmax;
87  os << "\n Z limits: " << e.fZmin << ' ' << e.fZmax;
88  return os;
89 }