76 const G4double xHalfScene = 0.5 * (xMax - xMin);
77 const G4double yHalfScene = 0.5 * (yMax - yMin);
78 const G4double zHalfScene = 0.5 * (zMax - zMin);
79 const G4double xSceneCentre = 0.5 * (xMax + xMin);
80 const G4double ySceneCentre = 0.5 * (yMax + yMin);
81 const G4double zSceneCentre = 0.5 * (zMax + zMin);
84 if (maxHalfScene <= 0.) {
86 <<
"Extent non-positive." 99 const G4String intro =
"G4MagneticFieldModel::DescribeYourselfTo: ";
100 if (globalFieldMgr) {
104 static G4bool warned =
false;
107 <<
"Null global field pointer." 113 static G4bool warned =
false;
116 <<
"No global field exists." 122 static G4bool warned =
false;
125 <<
"No global field manager." 133 const G4int nDataPointsPerXHalfScene =
G4int(xHalfScene / interval);
134 const G4int nDataPointsPerYHalfScene =
G4int(yHalfScene / interval);
135 const G4int nDataPointsPerZHalfScene =
G4int(zHalfScene / interval);
136 const G4int nXSamples = 2 * nDataPointsPerXHalfScene + 1;
137 const G4int nYSamples = 2 * nDataPointsPerYHalfScene + 1;
138 const G4int nZSamples = 2 * nDataPointsPerZHalfScene + 1;
139 const G4int nSamples = nXSamples * nYSamples * nZSamples;
140 const G4int nSamples3 = nSamples * 3;
141 const G4double arrowLengthMax = 0.8 * interval;
142 const G4int nResults = 6;
145 double position_time[4] = {0,0,0,0};
146 double result[nResults];
149 std::vector<G4double> BField(nSamples3);
150 std::vector<G4double> BFieldMagnitude(nSamples);
151 std::vector<G4double> xyz(nSamples3);
155 for (
G4int i = 0; i < nXSamples; i++) {
156 G4double x = xSceneCentre + (i - nDataPointsPerXHalfScene) * interval;
157 position_time[0] =
x;
158 for (
G4int j = 0; j < nYSamples; j++) {
159 G4double y = ySceneCentre + (j - nDataPointsPerYHalfScene) * interval;
160 position_time[1] =
y;
161 for (
G4int k = 0; k < nZSamples; k++) {
162 G4double z = zSceneCentre + (k - nDataPointsPerZHalfScene) * interval;
163 position_time[2] =
z;
165 const G4int ijk = i * nYSamples * nZSamples + j * nZSamples + k;
166 const G4int ijk3 = ijk * 3;
171 const G4Field* field = globalField;
180 if (pRegionFieldMgr) {
204 for (
G4int l = 0; l < 3; l++) {
205 BField[ijk3 + l] = result[l];
209 (result[0]*result[0]+result[1]*result[1]+result[2]*result[2]);
210 BFieldMagnitude[ijk] = mag;
216 if (mag > BFieldMagnitudeMax) {
217 BFieldMagnitudeMax = mag;
224 if (BFieldMagnitudeMax <= 0) {
226 <<
"No field in this scene." 232 for (
G4int i = 0; i < nSamples; i++) {
233 if (BFieldMagnitude[i] > 0) {
234 const G4int i3 = i * 3;
253 const G4double f = B / BFieldMagnitudeMax;
257 blue = 2. * (0.5 -
f);
259 red = 2. * (f - 0.5);
260 green = 2. * (1.0 -
f);
263 const G4double arrowLength = arrowLengthMax *
f;
271 const G4double z2 = z1 + arrowLength * Bz /
B;
273 G4ArrowModel BArrow(x1,y1,z1,x2,y2,z2,arrowLength/5,arrowColour);
274 BArrow.DescribeYourselfTo(sceneHandler);
279 BArrowLite.push_back(
G4Point3D(x1,y1,z1));
280 BArrowLite.push_back(
G4Point3D(x2,y2,z2));
virtual void GetFieldValue(const double Point[4], double *fieldArr) const =0
Representation fRepresentation
virtual void BeginPrimitives(const G4Transform3D &objectTransformation=G4Transform3D())=0
HepGeom::Point3D< G4double > G4Point3D
G4bool DoesFieldExist() const
virtual void AddPrimitive(const G4Polyline &)=0
G4GLOB_DLL std::ostream G4cout
G4int fNDataPointsPerMaxHalfScene
G4FieldManager * GetFieldManager() const
G4Navigator * GetNavigatorForTracking() const
G4FieldManager * GetFieldManager() const
void SetVisAttributes(const G4VisAttributes *)
static G4TransportationManager * GetTransportationManager()
virtual const G4VisExtent & GetExtent() const
G4FieldManager * GetFieldManager() const
virtual G4VPhysicalVolume * LocateGlobalPointAndSetup(const G4ThreeVector &point, const G4ThreeVector *direction=0, const G4bool pRelativeSearch=true, const G4bool ignoreDirection=true)
G4Region * GetRegion() const
virtual void EndPrimitives()=0
G4LogicalVolume * GetLogicalVolume() const
static const G4double alpha
static const G4double pos
const G4Field * GetDetectorField() const