95 std::vector<G4VEMDataSet*>* set =
new std::vector<G4VEMDataSet*>;
103 std::size_t nOfBins = energyVector.size();
109 for (
G4int mLocal=0; mLocal<numOfCouples; ++mLocal) {
119 G4cout <<
"eIonisation CS for " << mLocal <<
"th material "
121 <<
" eEl= " << nElements <<
G4endl;
124 G4double tcut = (*energyCuts)[mLocal];
129 for (
G4int i=0; i<nElements; ++i) {
131 G4int Z = (
G4int) (*elementVector)[i]->GetZ();
140 G4double density = nAtomsPerVolume[i];
142 for (std::size_t bin=0; bin<nOfBins; ++bin) {
145 energies->push_back(e);
146 log_energies->push_back(std::log10(e));
151 for (
G4int n=0; n<nShells; n++) {
153 G4double p = theParam->Probability(Z, tcut, e, e, n);
154 value += cross * p * density;
156 if(verbose>0 && mLocal == 0 && e>=1. && e<=0.)
158 G4cout <<
"G4eIonCrossSH: e(MeV)= " << e/MeV
160 <<
" cross= " << cross
162 <<
" value= " << value
163 <<
" tcut(MeV)= " << tcut/MeV
164 <<
" rho= " << density
169 if (value == 0.) value = 1e-300;
170 log_value = std::log10(value);
172 cs->push_back(value);
173 log_cs->push_back(log_value);
180 set->push_back(setForMat);
void Initialise(G4VDataSetAlgorithm *interpolation=nullptr, G4double minE=250 *CLHEP::eV, G4double maxE=100 *CLHEP::GeV, G4int numberOfBins=200, G4double unitE=CLHEP::MeV, G4double unitData=CLHEP::barn, G4int minZ=1, G4int maxZ=99)