Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // History: 27 // ----------- 28 // 01 Oct 2011 A.M., S.I. - 1st implementat 29 // 30 // Class description 31 // ---------------- 32 // Computation of K, L & M shell ECPSSR ionis 33 // Based on the work of A. Taborda et al. 34 // EXRS2012 proceedings 35 // ------------------------------------------- 36 37 #include <fstream> 38 #include <iomanip> 39 #include "globals.hh" 40 #include "G4ios.hh" 41 #include "G4SystemOfUnits.hh" 42 #include "G4EMDataSet.hh" 43 #include "G4LinInterpolation.hh" 44 #include "G4Proton.hh" 45 #include "G4Alpha.hh" 46 #include "G4ecpssrFormFactorMixsModel.hh" 47 48 //....oooOO0OOooo........oooOO0OOooo........oo 49 50 G4ecpssrFormFactorMixsModel::G4ecpssrFormFacto 51 { 52 interpolation = new G4LinInterpolation(); 53 54 for (G4int i=29; i<93; i++) 55 { 56 protonM1DataSetMap[i] = new G4EMDataSet( 57 protonM1DataSetMap[i]->LoadData("pixe/ec 58 59 protonM2DataSetMap[i] = new G4EMDataSet( 60 protonM2DataSetMap[i]->LoadData("pixe/ec 61 62 protonM3DataSetMap[i] = new G4EMDataSet( 63 protonM3DataSetMap[i]->LoadData("pixe/ec 64 65 protonM4DataSetMap[i] = new G4EMDataSet( 66 protonM4DataSetMap[i]->LoadData("pixe/ec 67 68 protonM5DataSetMap[i] = new G4EMDataSet( 69 protonM5DataSetMap[i]->LoadData("pixe/ec 70 } 71 72 protonMiXsVector.push_back(protonM1DataSetMa 73 protonMiXsVector.push_back(protonM2DataSetMa 74 protonMiXsVector.push_back(protonM3DataSetMa 75 protonMiXsVector.push_back(protonM4DataSetMa 76 protonMiXsVector.push_back(protonM5DataSetMa 77 78 for (G4int i=29; i<93; i++) 79 { 80 alphaM1DataSetMap[i] = new G4EMDataSet(i 81 alphaM1DataSetMap[i]->LoadData("pixe/ecp 82 83 alphaM2DataSetMap[i] = new G4EMDataSet(i 84 alphaM2DataSetMap[i]->LoadData("pixe/ecp 85 86 alphaM3DataSetMap[i] = new G4EMDataSet(i 87 alphaM3DataSetMap[i]->LoadData("pixe/ecp 88 89 alphaM4DataSetMap[i] = new G4EMDataSet(i 90 alphaM4DataSetMap[i]->LoadData("pixe/ecp 91 92 alphaM5DataSetMap[i] = new G4EMDataSet(i 93 alphaM5DataSetMap[i]->LoadData("pixe/ecp 94 95 } 96 97 alphaMiXsVector.push_back(alphaM1DataSetMap) 98 alphaMiXsVector.push_back(alphaM2DataSetMap) 99 alphaMiXsVector.push_back(alphaM3DataSetMap) 100 alphaMiXsVector.push_back(alphaM4DataSetMap) 101 alphaMiXsVector.push_back(alphaM5DataSetMap) 102 } 103 104 //....oooOO0OOooo........oooOO0OOooo........oo 105 106 G4ecpssrFormFactorMixsModel::~G4ecpssrFormFact 107 { 108 protonM1DataSetMap.clear(); 109 alphaM1DataSetMap.clear(); 110 111 protonM2DataSetMap.clear(); 112 alphaM2DataSetMap.clear(); 113 114 protonM3DataSetMap.clear(); 115 alphaM3DataSetMap.clear(); 116 117 protonM4DataSetMap.clear(); 118 alphaM4DataSetMap.clear(); 119 120 protonM5DataSetMap.clear(); 121 alphaM5DataSetMap.clear(); 122 123 delete interpolation; 124 } 125 126 //....oooOO0OOooo........oooOO0OOooo........oo 127 128 G4double G4ecpssrFormFactorMixsModel::Calculat 129 { 130 G4Proton* aProton = G4Proton::Proton(); 131 G4Alpha* aAlpha = G4Alpha::Alpha(); 132 G4double sigma = 0; 133 G4int mShellIndex = mShellId -1; 134 135 if (energyIncident > 0.1*MeV && energyIncide 136 137 if (massIncident == aProton->GetPDGMass()) 138 { 139 sigma = protonMiXsVector[mShellIndex][zTarge 140 if (sigma !=0 && energyIncident > prot 141 } 142 else if (massIncident == aAlpha->GetPDGMas 143 { 144 sigma = alphaMiXsVector[mShellIndex][z 145 if (sigma !=0 && energyIncident > alph 146 } 147 else 148 { 149 sigma = 0.; 150 } 151 } 152 153 // sigma is in internal units: it has been c 154 // the input file in barns bt the EmDataset 155 return sigma; 156 } 157 158 //....oooOO0OOooo........oooOO0OOooo........oo 159 160 G4double G4ecpssrFormFactorMixsModel::Calculat 161 { 162 // mShellId 163 return CalculateMiCrossSection (zTarget, ma 164 } 165 166 //....oooOO0OOooo........oooOO0OOooo........oo 167 168 G4double G4ecpssrFormFactorMixsModel::Calculat 169 { 170 // mShellId 171 return CalculateMiCrossSection (zTarget, ma 172 } 173 174 //....oooOO0OOooo........oooOO0OOooo........oo 175 176 G4double G4ecpssrFormFactorMixsModel::Calculat 177 { 178 return CalculateMiCrossSection (zTarget, ma 179 } 180 181 //....oooOO0OOooo........oooOO0OOooo........oo 182 183 G4double G4ecpssrFormFactorMixsModel::Calculat 184 { 185 return CalculateMiCrossSection (zTarget, ma 186 } 187 188 //....oooOO0OOooo........oooOO0OOooo........oo 189 190 G4double G4ecpssrFormFactorMixsModel::Calculat 191 { 192 return CalculateMiCrossSection (zTarget, ma 193 } 194