58{
59 G4double yMod = std::sqrt(y[0]*y[0]+y[1]*y[1]+y[2]*y[2]);
60 G4double e = std::sqrt(theMass*theMass+y[3]*y[3]+y[4]*y[4]+y[5]*y[5]);
61
62
63
64
65 dydx[0] = c_light*y[3]/e;
66 dydx[1] = c_light*y[4]/e;
67 dydx[2] = c_light*y[5]/e;
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
84
85 const G4VNuclearDensity * nuclearDensity=theNucleus->GetNuclearDensity();
86
87
88
91 if (density > 0 ) deriv = (factor/theMass)/
93
94
95
96
97 dydx[3] = yMod == 0 ? 0 : deriv*y[0]/yMod*c_light;
98 dydx[4] = yMod == 0 ? 0 : deriv*y[1]/yMod*c_light;
99 dydx[5] = yMod == 0 ? 0 : deriv*y[2]/yMod*c_light;
100
101
102
103
104
105
106
107
108
109}
CLHEP::Hep3Vector G4ThreeVector
G4double A13(G4double A) const
G4double GetDensity(const G4ThreeVector &aPosition) const
virtual G4double GetDeriv(const G4ThreeVector &point) const =0