#include <G4CrossSectionDataSetRegistry.hh>
◆ ~G4CrossSectionDataSetRegistry()
G4CrossSectionDataSetRegistry::~G4CrossSectionDataSetRegistry |
( |
| ) |
|
◆ G4CrossSectionDataSetRegistry()
◆ Clean()
void G4CrossSectionDataSetRegistry::Clean |
( |
| ) |
|
Definition at line 88 of file G4CrossSectionDataSetRegistry.cc.
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}
Referenced by ~G4CrossSectionDataSetRegistry().
◆ DeleteComponent()
Definition at line 151 of file G4CrossSectionDataSetRegistry.cc.
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}
◆ DeRegister() [1/2]
Definition at line 138 of file G4CrossSectionDataSetRegistry.cc.
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}
◆ DeRegister() [2/2]
Definition at line 117 of file G4CrossSectionDataSetRegistry.cc.
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}
◆ GetComponentCrossSection()
◆ GetCrossSectionDataSet()
Definition at line 164 of file G4CrossSectionDataSetRegistry.cc.
166{
167 for (auto & xsec : xSections) {
168 if(nullptr != xsec && xsec->GetName() == name) { return xsec; }
169 }
170
171
172 G4CrossSectionFactoryRegistry* factories =
174
175
176 G4VBaseXSFactory* factory = factories->
GetFactory(name, warning );
177 if ( factory ) {
179 } else {
180 G4VCrossSectionDataSet* ptr = nullptr;
181 return ptr;
182 }
183}
static G4CrossSectionFactoryRegistry * Instance()
G4VBaseXSFactory * GetFactory(const G4String &name, G4bool abortIfNotFound=true) const
virtual G4VCrossSectionDataSet * Instantiate()=0
Referenced by G4GammaNuclearXS::G4GammaNuclearXS().
◆ Instance()
Definition at line 71 of file G4CrossSectionDataSetRegistry.cc.
72{
73 if(nullptr == instance) {
76 }
77 return instance;
78}
friend class G4ThreadLocalSingleton< G4CrossSectionDataSetRegistry >
Referenced by G4INCLXXNeutronBuilder::Build(), LBE::ConstructHad(), G4NeutronCrossSectionXS::ConstructProcess(), G4HadProcesses::ElasticXS(), G4AntiNuclElastic::G4AntiNuclElastic(), G4ChipsComponentXS::G4ChipsComponentXS(), G4ChipsElasticModel::G4ChipsElasticModel(), G4ChipsKaonZeroElasticXS::G4ChipsKaonZeroElasticXS(), G4ChipsKaonZeroInelasticXS::G4ChipsKaonZeroInelasticXS(), G4ElectroVDNuclearModel::G4ElectroVDNuclearModel(), G4FTFPAntiBarionBuilder::G4FTFPAntiBarionBuilder(), G4FTFParameters::G4FTFParameters(), G4GammaNuclearXS::G4GammaNuclearXS(), G4InterfaceToXS::G4InterfaceToXS(), G4MuonVDNuclearModel::G4MuonVDNuclearModel(), G4NeutronElasticXS::G4NeutronElasticXS(), G4NeutronInelasticXS::G4NeutronInelasticXS(), G4ParticleInelasticXS::G4ParticleInelasticXS(), G4QGSPAntiBarionBuilder::G4QGSPAntiBarionBuilder(), G4QuasiElRatios::G4QuasiElRatios(), G4VComponentCrossSection::G4VComponentCrossSection(), G4VCrossSectionDataSet::G4VCrossSectionDataSet(), and G4HadProcesses::InelasticXS().
◆ operator=()
◆ Register() [1/2]
Definition at line 129 of file G4CrossSectionDataSetRegistry.cc.
130{
131 if(nullptr == p) { return; }
132 for (auto & xsec : xComponents) {
133 if(xsec == p) { return; }
134 }
135 xComponents.push_back(p);
136}
◆ Register() [2/2]
Definition at line 108 of file G4CrossSectionDataSetRegistry.cc.
109{
110 if(nullptr == p) { return; }
111 for (auto & xsec : xSections) {
112 if(xsec == p) { return; }
113 }
114 xSections.push_back(p);
115}
◆ G4ThreadLocalSingleton< G4CrossSectionDataSetRegistry >
The documentation for this class was generated from the following files: