ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4DELPHIMagField.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4DELPHIMagField.cc
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // G4DELPHIMagField implementation
27 //
28 // Created: V.Grichine - 03.02.1997
29 // -------------------------------------------------------------------
30 
31 #include "G4DELPHIMagField.hh"
32 #include "globals.hh"
33 #include "G4SystemOfUnits.hh"
34 
36 {
37 }
38 
40 
42 {
43 }
44 
46 
48 {
49  return new G4DELPHIMagField;
50 }
51 
53 
55  G4double B[3] ) const
56 {
57  G4int i, n = 8 ;
58  G4double a = 0.001 ; // mm -> m
59  G4double x = a*yTrack[0], y = a*yTrack[1], z = a*yTrack[2] ;
60  G4double x2 = x*x, y2 = y*y, z2 = z*z, r2 = x2 + y2 ;
61  G4double r4 = r2*r2, z4 = z2*z2, r6 = r4*r2, z6 = z4*z2 ;
62  G4double r8 = r4*r4, z8 = z4*z4, r10 = r8*r2, z10 = z8*z2 ;
63  G4double rz = z*std::sqrt(r2), r = std::sqrt(r2+a*a) ;
64  G4double Br ;
65  G4double P[8], Q[8] ;
66  static G4ThreadLocal G4double c[8] =
67  {
68  -9.26e-5, -3.51e-5, 2.94e-6, -1.10e-6,
69  6.25e-8, -1.77e-8, -6.88e-10, -7.52e-11
70  } ;
71  P[0] = 2*rz ;
72  P[1] = 4*rz*(r2 - 4.0*z2/3.0) ;
73  P[2] = 6*rz*(r4 - 4*r2*z2 + 1.6*z4) ;
74  P[3] = 8*rz*(r6 - 8*r4*z2 + 9.6*r2*z4 - 64.0*z6/35.0) ;
75  P[4] = 10*rz*(r8 - 40.0*r6*z2/3.0 + 32*r4*z4
76  - 128.0*r2*z6/7.0 + 128.0*z8/63.0);
77  P[5] = 0 ;
78  P[6] = 0 ;
79  P[7] = 0 ;
80 
81  Q[0] = r2 - 2*z2 ;
82  Q[1] = r4 - 8*r2*z2 + 8.0*z4/3.0 ;
83  Q[2] = r6 - 18*r4*z2 + 24*r2*z4 - 3.2*z6 ;
84  Q[3] = r8 - 32*r6*z2 + 96*r4*z4 - 51.2*r2*z6 +128.0*z8/35.0 ;
85  Q[4] = r10 - 50*r8*z2 + 800.0*r6*z4/3.0 - 320*r4*z6
86  + 640.0*r2*z8/7.0 - 256.0*z10/63.0 ;
87  Q[5] = 0 ;
88  Q[6] = 0 ;
89  Q[7] = 0 ;
90 
91  Br = 0 ;
92  B[2] = 1.2*tesla ; // the principal Bz value of DELPHI detector
93  for(i=0; i<n; ++i)
94  {
95  Br += c[i]*P[i] ;
96  B[2] += c[i]*Q[i] ;
97  }
98  B[0] = Br*x/r ;
99  B[1] = Br*y/r ;
100  return ;
101 }
102 
103 // -----------------------------------------------------------------