Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
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

◆ operator<<()

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}