103{
104
106 {
107 G4Exception(
"G4LivermoreIonisationModel::Initialise",
109 "Livermore Ionisation Model is applicable only to electrons");
110 }
111 transitionManager->Initialise();
112
113
114 if (energySpectrum)
115 {
116 delete energySpectrum;
117 energySpectrum = nullptr;
118 }
119 energySpectrum = new G4eIonisationSpectrum();
120 if (verboseLevel > 3)
122
123
124 if (crossSectionHandler)
125 {
126 delete crossSectionHandler;
127 crossSectionHandler = nullptr;
128 }
129
130 const size_t nbins = 20;
133 G4int ndec =
G4int(std::log10(emax/emin) + 0.5);
134 if(ndec <= 0) { ndec = 1; }
135
136 G4VDataSetAlgorithm* interpolation = new G4SemiLogInterpolation();
137 crossSectionHandler =
138 new G4eIonisationCrossSectionHandler(energySpectrum,interpolation,
139 emin,emax,nbins*ndec);
140 crossSectionHandler->Clear();
141 crossSectionHandler->LoadShellData("ioni/ion-ss-cs-");
142
143 G4VEMDataSet* emdata =
144 crossSectionHandler->BuildMeanFreePathForMaterials(&cuts);
145
146
147 delete emdata;
148
149 if (verboseLevel > 0)
150 {
151 G4cout <<
"Livermore Ionisation model is initialized " <<
G4endl
152 << "Energy range: "
156 }
157
158 if (verboseLevel > 3)
159 {
161 crossSectionHandler->PrintData();
163 energySpectrum->PrintData();
164 }
165
166 if(isInitialised) { return; }
168 isInitialised = true;
169}
static G4Electron * Electron()
G4double LowEnergyLimit() const
G4double HighEnergyLimit() const
G4ParticleChangeForLoss * GetParticleChangeForLoss()