34 lines
861 B
C++
34 lines
861 B
C++
// This code implementation is the intellectual property of
|
|
// the RD44 GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4Polymarker.hh,v 2.0 1998/07/02 17:30:08 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
//
|
|
// John Allison November 1996
|
|
|
|
#ifndef G4POLYMARKER_HH
|
|
#define G4POLYMARKER_HH
|
|
|
|
#include "G4VMarker.hh"
|
|
#include "G4Point3DList.hh"
|
|
|
|
class G4Polymarker: public G4VMarker, public G4Point3DList {
|
|
public:
|
|
friend ostream& operator << (ostream& os, const G4Polymarker& marker);
|
|
enum MarkerType {line, dots, circles, squares};
|
|
G4Polymarker ();
|
|
MarkerType GetMarkerType () const;
|
|
void SetMarkerType (MarkerType type);
|
|
private:
|
|
MarkerType fMarkerType;
|
|
};
|
|
|
|
#include "G4Polymarker.icc"
|
|
|
|
#endif
|