Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Functions
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

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

Definition at line 45 of file G4Polymarker.cc.

References G4Polymarker::circles, G4Polymarker::dots, and G4Polymarker::squares.

45  {
46  os << "G4Polymarker: type: ";
47  switch (marker.fMarkerType) {
48  case G4Polymarker::dots:
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 }