60: fpShaftPolyhedron(nullptr)
61, fpHeadPolyhedron(nullptr)
62, fTransform(transform)
63{
64 fType =
"G4ArrowModel";
68 (std::min(x1,x2),
69 std::max(x1,x2),
70 std::min(y1,y2),
71 std::max(y1,y2),
72 std::min(z1,z2),
73 std::max(z1,z2));
74
75
78
79
80
82
83 G4double totalLength = std::hypot(x2-x1, y2-y1, z2-z1);
84 if (totalLength < tolerance)
85 {totalLength = tolerance;}
86
88 if (shaftRadius < tolerance)
89 {shaftRadius = tolerance;}
90
91
92
93 G4double arrowLength = std::min(1.5*width, 0.5*totalLength);
94
95 G4double shaftLength = totalLength - arrowLength;
96 if (shaftLength < 2*tolerance)
97 {shaftLength = 2*tolerance;}
98
99 const G4Tubs shaft("shaft",0.,shaftRadius,0.5*shaftLength,0.,twopi);
100 fpShaftPolyhedron = shaft.CreatePolyhedron();
101
102 if (fpShaftPolyhedron)
103 {fpShaftPolyhedron->Transform(
G4Translate3D(0,0,-0.5*arrowLength));}
104
105
106 const G4double zHi = 0.5*totalLength;
107 const G4double zLow = zHi - arrowLength;
109 const G4double xExt = std::sqrt(3.)*rExt/2.;
110 const G4Tet head("head",
115 fpHeadPolyhedron = head.CreatePolyhedron();
116
117
121 const G4Point3D arrowCentre(0.5*(x1+x2),0.5*(y1+y2),0.5*(z1+z2));
124 if (fpShaftPolyhedron) fpShaftPolyhedron->Transform(tr);
125 if (fpHeadPolyhedron) fpHeadPolyhedron->Transform(tr);
126
127 G4VisAttributes va;
130 if (fpShaftPolyhedron) fpShaftPolyhedron->SetVisAttributes(va);
131 if (fpHeadPolyhedron) fpHeadPolyhedron->SetVisAttributes(va);
132
133
135}
HepGeom::Point3D< G4double > G4Point3D
CLHEP::Hep3Vector G4ThreeVector
HepGeom::Vector3D< G4double > G4Vector3D
G4double GetRadialTolerance() const
static G4GeometryTolerance * GetInstance()
G4String fGlobalDescription
void SetColour(const G4Colour &)
void SetForceSolid(G4bool=true)
BasicVector3D< T > unit() const
static void SetNumberOfRotationSteps(G4int n)
static G4int GetNumberOfRotationSteps()