102 std::vector<G4double> crossSections;
104 crossSections.push_back( ecpssrShellK->CalculateCrossSection(Z, mass, incidentEnergy) );
106 crossSections.push_back( ecpssrShellLi->CalculateL1CrossSection(Z, mass, incidentEnergy) );
107 crossSections.push_back( ecpssrShellLi->CalculateL2CrossSection(Z, mass, incidentEnergy) );
108 crossSections.push_back( ecpssrShellLi->CalculateL3CrossSection(Z, mass, incidentEnergy) );
111 crossSections.push_back( ecpssrShellMi->CalculateM1CrossSection(Z, mass, incidentEnergy) );
112 crossSections.push_back( ecpssrShellMi->CalculateM2CrossSection(Z, mass, incidentEnergy) );
113 crossSections.push_back( ecpssrShellMi->CalculateM3CrossSection(Z, mass, incidentEnergy) );
114 crossSections.push_back( ecpssrShellMi->CalculateM4CrossSection(Z, mass, incidentEnergy) );
115 crossSections.push_back( ecpssrShellMi->CalculateM5CrossSection(Z, mass, incidentEnergy) );
117 return crossSections;
128 if(shell > 3 && !ecpssrShellMi) {
136 res = ecpssrShellK->CalculateCrossSection(Z, mass, incidentEnergy);
140 res = ecpssrShellLi->CalculateL1CrossSection(Z, mass, incidentEnergy);
144 res = ecpssrShellLi->CalculateL2CrossSection(Z, mass, incidentEnergy);
148 res = ecpssrShellLi->CalculateL3CrossSection(Z, mass, incidentEnergy);
152 res = ecpssrShellMi->CalculateM1CrossSection(Z, mass, incidentEnergy);
156 res = ecpssrShellMi->CalculateM2CrossSection(Z, mass, incidentEnergy);
160 res = ecpssrShellMi->CalculateM3CrossSection(Z, mass, incidentEnergy);
164 res = ecpssrShellMi->CalculateM4CrossSection(Z, mass, incidentEnergy);
168 res = ecpssrShellMi->CalculateM5CrossSection(Z, mass, incidentEnergy);