Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4HCtable.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27//
28
29#include "G4HCtable.hh"
31
33
35
37{
38 for(size_t i=0;i<HClist.size();i++)
39 { if(HClist[i]==HCname && SDlist[i]==SDname) return -1; }
40 HClist.push_back(HCname);
41 SDlist.push_back(SDname);
42 return HClist.size();
43}
44
46{
47 G4int i = -1;
48 if(HCname.index("/")==std::string::npos) // HCname only
49 {
50 for(size_t j=0;j<HClist.size();j++)
51 {
52 if(HClist[j]==HCname)
53 {
54 if(i>=0) return -2;
55 i = j;
56 }
57 }
58 }
59 else
60 {
61 for(size_t j=0;j<HClist.size();j++)
62 {
63 G4String tgt = SDlist[j];
64 tgt += "/";
65 tgt += HClist[j];
66 if(tgt==HCname)
67 {
68 if(i>=0) return -2;
69 i = j;
70 }
71 }
72 }
73 return i;
74}
75
77{
78 if(aSD->GetNumberOfCollections()<1)
79 {
80 G4cerr << "Sensitive detector <" << aSD->GetName()
81 << "> does not have a registered hits collection."
82 << G4endl;
83 return -1;
84 }
85 if(aSD->GetNumberOfCollections()>1)
86 {
87 G4cerr << "Sensitive detector <" << aSD->GetName()
88 << "> has more than one registered hits collections."
89 << G4endl;
90 G4cerr << "Candidates are : ";
91 for(G4int j=0;j<aSD->GetNumberOfCollections();j++)
92 { G4cerr << aSD->GetCollectionName(j) << " "; }
93 G4cerr << G4endl;
94 return -1;
95 }
96 for(size_t k=0;k<SDlist.size();k++)
97 { if(SDlist[k]==aSD->GetName()) return k; }
98 return -1;
99}
100
101
int G4int
Definition: G4Types.hh:85
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
G4int Registor(G4String SDname, G4String HCname)
Definition: G4HCtable.cc:36
G4int GetCollectionID(G4String HCname) const
Definition: G4HCtable.cc:45
~G4HCtable()
Definition: G4HCtable.cc:34
str_size index(const char *, G4int pos=0) const
G4int GetNumberOfCollections() const
G4String GetCollectionName(G4int id) const