Geant4 11.2.2
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 44 of file G4Polymarker.cc.

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