Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4Polymarker.cc File Reference
#include "G4Polymarker.hh"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const G4Polymarker &marker)
 

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream &  os,
const G4Polymarker marker 
)

Definition at line 45 of file G4Polymarker.cc.

45 {
46 os << "G4Polymarker: type: ";
47 switch (marker.fMarkerType) {
49 os << "dots"; break;
51 os << "circles"; break;
53 os << "squares"; break;
54 default:
55 os << "unrecognised"; break;
56 }
57 os << "\n " << (G4VMarker) marker;
58 os << "\n " << (G4Point3DList) marker;
59 return os;
60}