Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4CrossSectionDataSetRegistry Class Reference

#include <G4CrossSectionDataSetRegistry.hh>

Public Member Functions

 ~G4CrossSectionDataSetRegistry ()
 
void Register (G4VCrossSectionDataSet *)
 
void DeRegister (G4VCrossSectionDataSet *)
 
void Register (G4VComponentCrossSection *)
 
void DeRegister (G4VComponentCrossSection *)
 
void DeleteComponent (G4VComponentCrossSection *)
 
void Clean ()
 
G4VCrossSectionDataSetGetCrossSectionDataSet (const G4String &name, G4bool warning=false)
 
G4VComponentCrossSectionGetComponentCrossSection (const G4String &name)
 
 G4CrossSectionDataSetRegistry (G4CrossSectionDataSetRegistry &)=delete
 
G4CrossSectionDataSetRegistryoperator= (const G4CrossSectionDataSetRegistry &right)=delete
 

Static Public Member Functions

static G4CrossSectionDataSetRegistryInstance ()
 

Friends

class G4ThreadLocalSingleton< G4CrossSectionDataSetRegistry >
 

Detailed Description

Definition at line 55 of file G4CrossSectionDataSetRegistry.hh.

Constructor & Destructor Documentation

◆ ~G4CrossSectionDataSetRegistry()

G4CrossSectionDataSetRegistry::~G4CrossSectionDataSetRegistry ( )

◆ G4CrossSectionDataSetRegistry()

G4CrossSectionDataSetRegistry::G4CrossSectionDataSetRegistry ( G4CrossSectionDataSetRegistry & )
delete

Member Function Documentation

◆ 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()

void G4CrossSectionDataSetRegistry::DeleteComponent ( G4VComponentCrossSection * p)

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]

void G4CrossSectionDataSetRegistry::DeRegister ( G4VComponentCrossSection * p)

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]

void G4CrossSectionDataSetRegistry::DeRegister ( G4VCrossSectionDataSet * p)

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()

G4VComponentCrossSection * G4CrossSectionDataSetRegistry::GetComponentCrossSection ( const G4String & name)

Definition at line 186 of file G4CrossSectionDataSetRegistry.cc.

187{
188 for (auto & xsec : xComponents) {
189 if(nullptr != xsec && xsec->GetName() == name) { return xsec; }
190 }
191 G4VComponentCrossSection* ptr = nullptr;
192 return ptr;
193}

Referenced by G4HadProcesses::ElasticXS(), G4FTFPAntiBarionBuilder::G4FTFPAntiBarionBuilder(), G4FTFParameters::G4FTFParameters(), G4NeutronElasticXS::G4NeutronElasticXS(), G4NeutronInelasticXS::G4NeutronInelasticXS(), G4QGSPAntiBarionBuilder::G4QGSPAntiBarionBuilder(), and G4HadProcesses::InelasticXS().

◆ GetCrossSectionDataSet()

G4VCrossSectionDataSet * G4CrossSectionDataSetRegistry::GetCrossSectionDataSet ( const G4String & name,
G4bool warning = false )

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 // check if factory exists...
171 //
172 G4CrossSectionFactoryRegistry* factories =
174 // This throws if factory is not found, add second parameter
175 // to false to avoid this
176 G4VBaseXSFactory* factory = factories->GetFactory(name, warning );
177 if ( factory ) {
178 return factory->Instantiate();
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()

G4CrossSectionDataSetRegistry * G4CrossSectionDataSetRegistry::Instance ( )
static

Definition at line 71 of file G4CrossSectionDataSetRegistry.cc.

72{
73 if(nullptr == instance) {
75 instance = inst.Instance();
76 }
77 return instance;
78}

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=()

G4CrossSectionDataSetRegistry & G4CrossSectionDataSetRegistry::operator= ( const G4CrossSectionDataSetRegistry & right)
delete

◆ Register() [1/2]

void G4CrossSectionDataSetRegistry::Register ( G4VComponentCrossSection * p)

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]

void G4CrossSectionDataSetRegistry::Register ( G4VCrossSectionDataSet * p)

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}

Friends And Related Symbol Documentation

◆ G4ThreadLocalSingleton< G4CrossSectionDataSetRegistry >

Definition at line 1 of file G4CrossSectionDataSetRegistry.hh.


The documentation for this class was generated from the following files: