Service class (array of manip_absvol).
More...
#include <volume.h>
Service class (array of manip_absvol).
Definition at line 32 of file volume.h.
◆ manip_absvol_treeid()
Heed::manip_absvol_treeid::manip_absvol_treeid |
( |
| ) |
|
|
inline |
◆ check_absvol_registered()
int Heed::manip_absvol_treeid::check_absvol_registered |
( |
absvol * | avol | ) |
|
Definition at line 37 of file volume.cpp.
37 {
38 for (
auto vol :
eid)
if (vol->Gavol() == avol)
return 1;
39 return 0;
40}
std::vector< manip_absvol * > eid
List of volumes.
◆ check_manip_absvol_registered()
int Heed::manip_absvol_treeid::check_manip_absvol_registered |
( |
manip_absvol * | amvol | ) |
|
Definition at line 32 of file volume.cpp.
32 {
33 for (
auto vol :
eid)
if (vol == amvol)
return 1;
34 return 0;
35}
◆ down_absref()
void Heed::manip_absvol_treeid::down_absref |
( |
absref * | f | ) |
|
◆ G_lamvol()
manip_absvol * Heed::manip_absvol_treeid::G_lamvol |
( |
| ) |
const |
|
inline |
Get last address of manipulator.
Definition at line 39 of file volume.h.
39 {
40 return eid.empty() ? nullptr :
eid.back();
41 }
Referenced by operator==.
◆ G_lavol()
absvol * Heed::manip_absvol_treeid::G_lavol |
( |
| ) |
const |
Get last address of volume.
Definition at line 18 of file volume.cpp.
18 {
19 return eid.empty() ? nullptr :
eid.back()->Gavol();
20}
◆ print()
void Heed::manip_absvol_treeid::print |
( |
std::ostream & | file, |
|
|
int | l ) const |
Definition at line 55 of file volume.cpp.
55 {
56 if (l < 0) return;
58 Ifile <<
"no volume defined\n";
59 } else {
60
61
62
63
64
65
66
67
68
69
70
71
72 }
73 file.flush();
74}
◆ up_absref()
void Heed::manip_absvol_treeid::up_absref |
( |
absref * | f | ) |
|
Definition at line 27 of file volume.cpp.
27 {
28 const int qeid =
eid.size();
30}
void up_absref(absref *f)
Referenced by up_absref().
◆ operator!=
Definition at line 61 of file volume.h.
61 {
62 if (tid1 == tid2) return 0;
63 return 1;
64}
◆ operator==
Definition at line 42 of file volume.cpp.
42 {
43
44 if (tid1.eid.size() != tid2.eid.size()) return 0;
45
46 if (tid1.G_lamvol() != tid2.G_lamvol()) return 0;
47
48 const int qeid = tid1.eid.size();
49 for (int n = 0; n < qeid - 1; ++n) {
50 if (tid1.eid[n] != tid2.eid[n]) return 0;
51 }
52 return 1;
53}
◆ eid
List of volumes.
Definition at line 37 of file volume.h.
Referenced by check_absvol_registered(), check_manip_absvol_registered(), down_absref(), Heed::absvol::find_embed_vol(), G_lamvol(), G_lavol(), Heed::manip_absvol::m_find_embed_vol(), operator==, print(), Heed::gparticle::switch_new_vol(), and up_absref().
The documentation for this class was generated from the following files: