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 // 27 // ------------------------------------------- 28 // 29 // GEANT4 Class file 30 // 31 // 32 // File name: G4CrossSectionDataSetRegistry 33 // 34 // Author V.Ivanchenko 24.01.2009 35 // 36 // Modifications: 37 // 38 39 #include "G4ios.hh" 40 41 #include "G4CrossSectionDataSetRegistry.hh" 42 #include "G4VCrossSectionDataSet.hh" 43 #include "G4VComponentCrossSection.hh" 44 #include "G4CrossSectionFactory.hh" 45 #include "G4CrossSectionFactoryRegistry.hh" 46 47 // Needed for running with 'static' libraries 48 // declared factories 49 G4_REFERENCE_XS_FACTORY(G4ChipsKaonMinusInelas 50 G4_REFERENCE_XS_FACTORY(G4ChipsKaonMinusElasti 51 G4_REFERENCE_XS_FACTORY(G4ChipsKaonPlusInelast 52 G4_REFERENCE_XS_FACTORY(G4ChipsKaonPlusElastic 53 G4_REFERENCE_XS_FACTORY(G4ChipsKaonZeroInelast 54 G4_REFERENCE_XS_FACTORY(G4ChipsKaonZeroElastic 55 G4_REFERENCE_XS_FACTORY(G4ChipsHyperonInelasti 56 G4_REFERENCE_XS_FACTORY(G4ChipsHyperonElasticX 57 G4_REFERENCE_XS_FACTORY(G4ChipsProtonInelastic 58 G4_REFERENCE_XS_FACTORY(G4ChipsProtonElasticXS 59 G4_REFERENCE_XS_FACTORY(G4ChipsNeutronInelasti 60 G4_REFERENCE_XS_FACTORY(G4ChipsNeutronElasticX 61 G4_REFERENCE_XS_FACTORY(G4ChipsPionPlusInelast 62 G4_REFERENCE_XS_FACTORY(G4ChipsPionPlusElastic 63 G4_REFERENCE_XS_FACTORY(G4ChipsPionMinusInelas 64 G4_REFERENCE_XS_FACTORY(G4ChipsPionMinusElasti 65 G4_REFERENCE_XS_FACTORY(G4ChipsAntiBaryonInela 66 G4_REFERENCE_XS_FACTORY(G4ChipsAntiBaryonElast 67 G4_REFERENCE_XS_FACTORY(G4ElectroNuclearCrossS 68 69 G4ThreadLocal G4CrossSectionDataSetRegistry* G 70 71 G4CrossSectionDataSetRegistry* G4CrossSectionD 72 { 73 if(nullptr == instance) { 74 static G4ThreadLocalSingleton<G4CrossSecti 75 instance = inst.Instance(); 76 } 77 return instance; 78 } 79 80 G4CrossSectionDataSetRegistry::G4CrossSectionD 81 {} 82 83 G4CrossSectionDataSetRegistry::~G4CrossSection 84 { 85 Clean(); 86 } 87 88 void G4CrossSectionDataSetRegistry::Clean() 89 { 90 std::size_t n = xSections.size(); 91 for (std::size_t i=0; i<n; ++i) { 92 G4VCrossSectionDataSet* p = xSections[i]; 93 if(nullptr != p) { 94 delete p; 95 xSections[i] = nullptr; 96 } 97 } 98 n = xComponents.size(); 99 for (std::size_t i=0; i<n; ++i) { 100 auto p = xComponents[i]; 101 if(nullptr != p) { 102 delete p; 103 xComponents[i] = nullptr; 104 } 105 } 106 } 107 108 void G4CrossSectionDataSetRegistry::Register(G 109 { 110 if(nullptr == p) { return; } 111 for (auto & xsec : xSections) { 112 if(xsec == p) { return; } 113 } 114 xSections.push_back(p); 115 } 116 117 void G4CrossSectionDataSetRegistry::DeRegister 118 { 119 if(nullptr == p) { return; } 120 std::size_t n = xSections.size(); 121 for (std::size_t i=0; i<n; ++i) { 122 if(xSections[i] == p) { 123 xSections[i] = nullptr; 124 return; 125 } 126 } 127 } 128 129 void G4CrossSectionDataSetRegistry::Register(G 130 { 131 if(nullptr == p) { return; } 132 for (auto & xsec : xComponents) { 133 if(xsec == p) { return; } 134 } 135 xComponents.push_back(p); 136 } 137 138 void G4CrossSectionDataSetRegistry::DeRegister 139 { 140 if(nullptr == p) { return; } 141 std::size_t n = xComponents.size(); 142 for (std::size_t i=0; i<n; ++i) { 143 if(xComponents[i] == p) { 144 xComponents[i] = nullptr; 145 return; 146 } 147 } 148 } 149 150 void 151 G4CrossSectionDataSetRegistry::DeleteComponent 152 { 153 if(nullptr == p) { return; } 154 std::size_t n = xComponents.size(); 155 for (std::size_t i=0; i<n; ++i) { 156 if(xComponents[i] == p) { 157 delete p; 158 return; 159 } 160 } 161 } 162 163 G4VCrossSectionDataSet* 164 G4CrossSectionDataSetRegistry::GetCrossSection 165 166 { 167 for (auto & xsec : xSections) { 168 if(nullptr != xsec && xsec->GetName() == n 169 } 170 // check if factory exists... 171 // 172 G4CrossSectionFactoryRegistry* factories = 173 G4CrossSectionFactoryRegistry::Instance(); 174 // This throws if factory is not found, add 175 // to false to avoid this 176 G4VBaseXSFactory* factory = factories->GetFa 177 if ( factory ) { 178 return factory->Instantiate(); 179 } else { 180 G4VCrossSectionDataSet* ptr = nullptr; 181 return ptr; 182 } 183 } 184 185 G4VComponentCrossSection* 186 G4CrossSectionDataSetRegistry::GetComponentCro 187 { 188 for (auto & xsec : xComponents) { 189 if(nullptr != xsec && xsec->GetName() == n 190 } 191 G4VComponentCrossSection* ptr = nullptr; 192 return ptr; 193 } 194