#include <G4HCtable.hh>
Definition at line 51 of file G4HCtable.hh.
◆ G4HCtable()
◆ ~G4HCtable()
G4HCtable::~G4HCtable |
( |
| ) |
|
|
default |
◆ entries()
G4int G4HCtable::entries |
( |
| ) |
const |
|
inline |
◆ GetCollectionID() [1/2]
G4int G4HCtable::GetCollectionID |
( |
const G4String & | HCname | ) |
const |
Definition at line 43 of file G4HCtable.cc.
44{
46 if (HCname.find('/') == std::string::npos)
47 {
48 for (std::size_t j = 0; j < HClist.size(); ++j) {
49 if (HClist[j] == HCname) {
50 if (i >= 0) return -2;
52 }
53 }
54 }
55 else {
56 for (std::size_t j = 0; j < HClist.size(); ++j) {
57 G4String tgt = SDlist[j];
58 tgt += "/";
59 tgt += HClist[j];
60 if (tgt == HCname) {
61 if (i >= 0) return -2;
63 }
64 }
65 }
66 return i;
67}
◆ GetCollectionID() [2/2]
Definition at line 69 of file G4HCtable.cc.
70{
73 <<
"> does not have a registered hits collection." <<
G4endl;
74 return -1;
75 }
78 <<
"> has more than one registered hits collections." <<
G4endl;
79 G4cerr <<
"Candidates are : ";
82 }
84 return -1;
85 }
86 for (std::size_t k = 0; k < SDlist.size(); ++k) {
88 }
89 return -1;
90}
G4GLOB_DLL std::ostream G4cerr
const G4String & GetCollectionName(G4int id) const
G4int GetNumberOfCollections() const
const G4String & GetName() const
◆ GetHCname()
Definition at line 70 of file G4HCtable.hh.
71 {
72 if (i < 0 || i >
entries())
return "***Not Defined***";
73 return HClist[i];
74 }
◆ GetSDname()
Definition at line 64 of file G4HCtable.hh.
65 {
66 if (i < 0 || i >
entries())
return "***Not Defined***";
67 return SDlist[i];
68 }
◆ Registor()
Definition at line 33 of file G4HCtable.cc.
34{
35 for (std::size_t i = 0; i < HClist.size(); ++i) {
36 if (HClist[i] == HCname && SDlist[i] == SDname) return -1;
37 }
38 HClist.push_back(HCname);
39 SDlist.push_back(SDname);
40 return (
G4int)HClist.size();
41}
The documentation for this class was generated from the following files: