Import Geant4 11.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2021-12-10 14:46:44 +01:00
committed by Ben Morgan
parent 6399a014b6
commit 80e2389dd8
3932 changed files with 202519 additions and 246221 deletions
@@ -51,12 +51,25 @@ public: // With description
const G4String& colourString = "auto",
const G4String& description = "",
G4bool withAnnotation = true,
G4double textSize = 10.
G4double textSize = 10.,
const G4Transform3D& transform = G4Transform3D()
);
// Alternative short constructor
G4AxesModel
(G4double x0, G4double y0, G4double z0, G4double length,
const G4Transform3D& transform = G4Transform3D()
);
virtual ~G4AxesModel ();
void SetTransformation (const G4Transform3D& transform) override;
void Construct
(G4double x0, G4double y0, G4double z0, G4double length,
G4double arrowWidth, const G4String& colourString,
const G4String& description,
G4bool withAnnotation,
G4double textSize,
const G4Transform3D& transform);
void DescribeYourselfTo (G4VGraphicsScene&) override;
// The main task of a model is to describe itself to the graphics scene.
@@ -71,6 +84,7 @@ private:
*fXAxisModel, *fXLabelModel, *fXAnnotationModel,
*fYAxisModel, *fYLabelModel, *fYAnnotationModel,
*fZAxisModel, *fZLabelModel, *fZAnnotationModel;
G4Transform3D fTransform;
};
#endif