Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ChannelingFastSimInterpolation Class Reference

#include <G4ChannelingFastSimInterpolation.hh>

Public Member Functions

 G4ChannelingFastSimInterpolation (G4double dx0, G4double dy0, G4int nPointsx0, G4int nPointsy0, G4int iModel0)
 
 ~G4ChannelingFastSimInterpolation ()=default
 
G4double GetIF (G4double xx, G4double yy)
 Get Spline Function.
 
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)
 

Detailed Description

Definition at line 46 of file G4ChannelingFastSimInterpolation.hh.

Constructor & Destructor Documentation

◆ G4ChannelingFastSimInterpolation()

G4ChannelingFastSimInterpolation::G4ChannelingFastSimInterpolation ( G4double dx0,
G4double dy0,
G4int nPointsx0,
G4int nPointsy0,
G4int iModel0 )

Definition at line 34 of file G4ChannelingFastSimInterpolation.cc.

39{
40 fDx = dx0;
41 fDy = dy0;
42 nPointsx = nPointsx0;
43 nPointsy = nPointsy0;
44 fStepi = fDx/nPointsx;
45 fStepi2= fStepi*fStepi;
46 iModel = iModel0;
47
48 //resize vectors for interpolation coefficients
49 if(iModel==1)
50 {
51 fAI.resize(nPointsx+1);
52 fBI.resize(nPointsx+1);
53 fCI.resize(nPointsx+1);
54 fDI.resize(nPointsx+1);
55 }
56 else if(iModel==2)
57 {
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));
65
66 for(G4int i=0; i<=nPointsx; i++)
67 {
68 fCI3D[i][nPointsy]=0.;
69 }
70 }
71}
int G4int
Definition G4Types.hh:85

◆ ~G4ChannelingFastSimInterpolation()

G4ChannelingFastSimInterpolation::~G4ChannelingFastSimInterpolation ( )
default

Member Function Documentation

◆ GetIF()

G4double G4ChannelingFastSimInterpolation::GetIF ( G4double xx,
G4double yy )

Get Spline Function.

Definition at line 75 of file G4ChannelingFastSimInterpolation.cc.

75 {
76 G4double SplineF=0.;
77 if(iModel==1)
78 {
79 SplineF = Spline1D(xx);
80 }
81 else if(iModel==2)
82 {
83 SplineF = Spline2D(xx, yy);
84 }
85 return SplineF;
86}
double G4double
Definition G4Types.hh:83

◆ SetCoefficients1D()

void G4ChannelingFastSimInterpolation::SetCoefficients1D ( G4double AI0,
G4double BI0,
G4double CI0,
G4double DI0,
G4int i )

Set spline coefficients.

Definition at line 90 of file G4ChannelingFastSimInterpolation.cc.

94 {
95 fAI[i] = AI0;
96 fBI[i] = BI0/cm;
97 fCI[i] = CI0/cm2;
98 fDI[i] = DI0/cm3;
99}

◆ SetCoefficients2D()

void G4ChannelingFastSimInterpolation::SetCoefficients2D ( G4double AI3D0,
G4double BI3D0,
G4double CI3D0,
G4int i,
G4int j,
G4int k )

Definition at line 103 of file G4ChannelingFastSimInterpolation.cc.

108 {
109 if (k==0)
110 {
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;
114 }
115 else if (k==1)
116 {
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;
120 }
121}

The documentation for this class was generated from the following files: