#include <G4ElementData.hh>
|
| G4ElementData (G4int length=99) |
|
| ~G4ElementData () |
|
G4ElementData & | operator= (const G4ElementData &right)=delete |
|
| G4ElementData (const G4ElementData &)=delete |
|
void | InitialiseForElement (G4int Z, G4PhysicsVector *v) |
|
void | InitialiseForElement (G4int Z, G4Physics2DVector *v) |
|
void | InitialiseForComponent (G4int Z, G4int nComponents=0) |
|
void | InitialiseFor2DComponent (G4int Z, G4int nComponents=0) |
|
void | AddComponent (G4int Z, G4int id, G4PhysicsVector *v) |
|
void | Add2DComponent (G4int Z, G4int id, G4Physics2DVector *v) |
|
void | SetName (const G4String &nam) |
|
const G4String & | GetName () const |
|
G4PhysicsVector * | GetElementData (G4int Z) const |
|
G4Physics2DVector * | GetElement2DData (G4int Z) const |
|
G4PhysicsVector * | GetComponentDataByID (G4int Z, G4int id) const |
|
G4Physics2DVector * | Get2DComponentDataByID (G4int Z, G4int id) const |
|
G4double | GetValueForElement (G4int Z, G4double kinEnergy) const |
|
std::size_t | GetNumberOfComponents (G4int Z) const |
|
std::size_t | GetNumberOf2DComponents (G4int Z) const |
|
G4int | GetComponentID (G4int Z, std::size_t idx) const |
|
G4PhysicsVector * | GetComponentDataByIndex (G4int Z, std::size_t idx) const |
|
G4Physics2DVector * | Get2DComponentDataByIndex (G4int Z, std::size_t idx) const |
|
G4double | GetValueForComponent (G4int Z, std::size_t idx, G4double kinEnergy) const |
|
Definition at line 56 of file G4ElementData.hh.
◆ G4ElementData() [1/2]
G4ElementData::G4ElementData |
( |
G4int | length = 99 | ) |
|
|
explicit |
Definition at line 42 of file G4ElementData.cc.
43 : maxNumElm(length)
44{
45 elmData.resize(maxNumElm, nullptr);
47}
static G4ElementDataRegistry * Instance()
void RegisterMe(G4ElementData *p)
Referenced by G4ElementData(), and operator=().
◆ ~G4ElementData()
G4ElementData::~G4ElementData |
( |
| ) |
|
Definition at line 49 of file G4ElementData.cc.
50{
51 for (auto const & p : elmData) { delete p; }
52 for (auto const & p : elm2Data) { delete p; }
53 for (auto const & p : compData) {
54 if (nullptr != p ) {
55 for (auto const & q : *p) { delete q.second; }
56 delete p;
57 }
58 }
59 for (auto const & p : comp2D) {
60 if (nullptr != p ) {
61 for (auto const & q : *p) { delete q.second; }
62 delete p;
63 }
64 }
66}
void RemoveMe(G4ElementData *p)
◆ G4ElementData() [2/2]
◆ Add2DComponent()
Definition at line 134 of file G4ElementData.cc.
135{
136 if (Z < 0 || Z >= maxNumElm) {
137 DataError(Z, "Add2DComponent");
138 return;
139 }
140 if (0 == comp2D.size()) {
141 compData.resize(maxNumElm, nullptr);
142 }
143 if (nullptr == comp2D[Z]) {
144 comp2D[Z] = new std::vector<std::pair<G4int, G4Physics2DVector*> >;
145 }
146 comp2D[Z]->emplace_back(id, v);
147}
◆ AddComponent()
Definition at line 119 of file G4ElementData.cc.
120{
121 if (Z < 0 || Z >= maxNumElm) {
122 DataError(Z, "AddComponent");
123 return;
124 }
125 if (0 == compData.size()) {
126 compData.resize(maxNumElm, nullptr);
127 }
128 if (nullptr == compData[Z]) {
129 compData[Z] = new std::vector<std::pair<G4int, G4PhysicsVector*> >;
130 }
131 compData[Z]->emplace_back(id, v);
132}
◆ Get2DComponentDataByID()
Definition at line 190 of file G4ElementData.hh.
191{
192 G4Physics2DVector* v = nullptr;
193 for (auto const & p : *(comp2D[Z])) {
194 if (id == p.first) {
195 v = p.second;
196 break;
197 }
198 }
199 return v;
200}
◆ Get2DComponentDataByIndex()
Definition at line 235 of file G4ElementData.hh.
236{
237 return
239}
std::size_t GetNumberOf2DComponents(G4int Z) const
◆ GetComponentDataByID()
Definition at line 177 of file G4ElementData.hh.
178{
179 G4PhysicsVector* v = nullptr;
180 for (auto const & p : *(compData[Z])) {
181 if (id == p.first) {
182 v = p.second;
183 break;
184 }
185 }
186 return v;
187}
◆ GetComponentDataByIndex()
Definition at line 228 of file G4ElementData.hh.
229{
230 return
232}
std::size_t GetNumberOfComponents(G4int Z) const
◆ GetComponentID()
G4int G4ElementData::GetComponentID |
( |
G4int | Z, |
|
|
std::size_t | idx ) const |
|
inline |
◆ GetElement2DData()
◆ GetElementData()
◆ GetName()
const G4String & G4ElementData::GetName |
( |
| ) |
const |
|
inline |
◆ GetNumberOf2DComponents()
std::size_t G4ElementData::GetNumberOf2DComponents |
( |
G4int | Z | ) |
const |
|
inline |
◆ GetNumberOfComponents()
std::size_t G4ElementData::GetNumberOfComponents |
( |
G4int | Z | ) |
const |
|
inline |
◆ GetValueForComponent()
Definition at line 242 of file G4ElementData.hh.
243{
245 (*(compData[Z]))[idx].second->Value(e) : 0.0;
246}
◆ GetValueForElement()
Definition at line 203 of file G4ElementData.hh.
204{
205 return elmData[Z]->Value(kinEnergy);
206}
◆ InitialiseFor2DComponent()
void G4ElementData::InitialiseFor2DComponent |
( |
G4int | Z, |
|
|
G4int | nComponents = 0 ) |
Definition at line 105 of file G4ElementData.cc.
106{
107 if (Z < 0 || Z >= maxNumElm) {
108 DataError(Z, "InitialiseFor2DComponent");
109 return;
110 }
111 if (0 == comp2D.size()) {
112 comp2D.resize(maxNumElm, nullptr);
113 }
114 delete comp2D[Z];
115 comp2D[Z] = new std::vector<std::pair<G4int, G4Physics2DVector*> >;
116 if (0 < nComponents) { comp2D[Z]->reserve(nComponents); }
117}
◆ InitialiseForComponent()
void G4ElementData::InitialiseForComponent |
( |
G4int | Z, |
|
|
G4int | nComponents = 0 ) |
Definition at line 91 of file G4ElementData.cc.
92{
93 if (Z < 0 || Z >= maxNumElm) {
94 DataError(Z, "InitialiseForComponent");
95 return;
96 }
97 if (0 == compData.size()) {
98 compData.resize(maxNumElm, nullptr);
99 }
100 delete compData[Z];
101 compData[Z] = new std::vector<std::pair<G4int, G4PhysicsVector*> >;
102 if (0 < nComponents) { compData[Z]->reserve(nComponents); }
103}
◆ InitialiseForElement() [1/2]
Definition at line 78 of file G4ElementData.cc.
79{
80 if (Z < 0 || Z >= maxNumElm) {
81 DataError(Z, "InitialiseForElement");
82 return;
83 }
84 if (0 == elm2Data.size()) {
85 elm2Data.resize(maxNumElm, nullptr);
86 }
87 delete elm2Data[Z];
88 elm2Data[Z] = v;
89}
◆ InitialiseForElement() [2/2]
Definition at line 68 of file G4ElementData.cc.
69{
70 if (Z < 0 || Z >= maxNumElm) {
71 DataError(Z, "InitialiseForElement");
72 return;
73 }
74 delete elmData[Z];
75 elmData[Z] = v;
76}
◆ operator=()
◆ SetName()
void G4ElementData::SetName |
( |
const G4String & | nam | ) |
|
|
inline |
The documentation for this class was generated from the following files: