44 fStepi = fDx/nPointsx;
45 fStepi2= fStepi*fStepi;
51 fAI.resize(nPointsx+1);
52 fBI.resize(nPointsx+1);
53 fCI.resize(nPointsx+1);
54 fDI.resize(nPointsx+1);
58 fStepj = fDy/nPointsy;
59 fAI3D.resize(nPointsx+1, std::vector<G4double>(nPointsy+1));
60 fBI3D.resize(nPointsx+1, std::vector<G4double>(nPointsy+1));
61 fCI3D.resize(nPointsx+1, std::vector<G4double>(nPointsy+1));
62 fAI3D3.resize(nPointsx+1, std::vector<G4double>(nPointsy+1));
63 fBI3D3.resize(nPointsx+1, std::vector<G4double>(nPointsy+1));
64 fCI3D3.resize(nPointsx+1, std::vector<G4double>(nPointsy+1));
66 for(
G4int i=0; i<=nPointsx; i++)
68 fCI3D[i][nPointsy]=0.;
79 SplineF = Spline1D(xx);
83 SplineF = Spline2D(xx, yy);
111 fAI3D[i][j] = AI3D0/fStepj/fStepi/6.;
112 fBI3D[i][j] = BI3D0/fStepj/fStepi/6.;
113 fCI3D[i][j] = CI3D0/fStepj/fStepi/6./cm2;
117 fAI3D3[i][j] = AI3D0/fStepj/fStepi/6./cm2;
118 fBI3D3[i][j] = BI3D0/fStepj/fStepi/6./cm2;
119 fCI3D3[i][j] = CI3D0/fStepj/fStepi/6./cm2/cm2;
141 G4int mmx = std::floor(x1/fStepi);
142 x1 -= (mmx+1)*fStepi;
143 G4double Spline3 = fAI[mmx]+x1*(fBI[mmx]+x1*(fCI[mmx]+fDI[mmx]*x1));
174 G4int mmx = std::floor(x1/fStepi);
175 G4int mmy = std::floor(y1/fStepj);
187 G4double spl3dxx1 = fCI3D3[mmx ][mmy]*tt2y3 + fCI3D3[mmx ][mmy+1]*tt1y3 +
188 fAI3D3[mmx ][mmy]*tt2y + fBI3D3[mmx ][mmy]*tt1y;
189 G4double spl3dxx2 = fCI3D3[mmx+1][mmy]*tt2y3 + fCI3D3[mmx+1][mmy+1]*tt1y3 +
190 fAI3D3[mmx+1][mmy]*tt2y + fBI3D3[mmx+1][mmy]*tt1y;
191 G4double spl3d1 = fCI3D[ mmx ][mmy]*tt2y3 + fCI3D[mmx ][mmy+1]*tt1y3 +
192 fAI3D[ mmx ][mmy]*tt2y + fBI3D[mmx ][mmy]*tt1y;
193 G4double spl3d2 = fCI3D[ mmx+1][mmy]*tt2y3 + fCI3D[mmx+1][mmy+1]*tt1y3 +
194 fAI3D[ mmx+1][mmy]*tt2y + fBI3D[mmx+1][mmy]*tt1y;
196 G4double spl3d = spl3dxx1*tt23 + spl3dxx2*tt13 +
197 (spl3d1*6.-spl3dxx1*fStepi2)*tt2 + (spl3d2*6.-spl3dxx2*fStepi2)*tt1;
Definition of the G4ChannelingFastSimInterpolation class The class includes spline interpolation coef...
void SetCoefficients1D(G4double AI0, G4double BI0, G4double CI0, G4double DI0, G4int i)
Set spline coefficients.
void SetCoefficients2D(G4double AI3D0, G4double BI3D0, G4double CI3D0, G4int i, G4int j, G4int k)
G4ChannelingFastSimInterpolation(G4double dx0, G4double dy0, G4int nPointsx0, G4int nPointsy0, G4int iModel0)
G4double GetIF(G4double xx, G4double yy)
Get Spline Function.