Geant4-11
G4DCtable.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 "G4DCtable.hh"
30#include "G4VDigitizerModule.hh"
31
33
35
37{
38 for(int i=0;i<int(DClist.size());i++)
39 { if(DClist[i]==DCname && DMlist[i]==DMname) return -1; }
40 DClist.push_back(DCname);
41 DMlist.push_back(DMname);
42 return DClist.size();
43}
44
46{
47 G4int i = -1;
48 if(DCname.find("/")==std::string::npos) // DCname only
49 {
50 for(int j=0;j<int(DClist.size());j++)
51 {
52 if(DClist[j]==DCname)
53 {
54 if(i>=0) return -2;
55 i = j;
56 }
57 }
58 }
59 else
60 {
61 for(int j=0;j<int(DClist.size());j++)
62 {
63 G4String tgt = DMlist[j];
64 tgt += "/";
65 tgt += DClist[j];
66 if(tgt==DCname)
67 {
68 if(i>=0) return -2;
69 i = j;
70 }
71 }
72 }
73 return i;
74}
75
77{
78 if(aDM->GetNumberOfCollections()<1)
79 {
80 G4cerr << "Digitizer Module <" << aDM->GetName()
81 << "> does not have a registered digits collection."
82 << G4endl;
83 return -1;
84 }
85 if(aDM->GetNumberOfCollections()>1)
86 {
87 G4cerr << "Digitizer Module <" << aDM->GetName()
88 << "> has more than one registered digits collections."
89 << G4endl;
90 G4cerr << "Candidates are : ";
91 for(G4int j=0;j<aDM->GetNumberOfCollections();j++)
92 { G4cerr << aDM->GetCollectionName(j) << " "; }
93 G4cerr << G4endl;
94 return -1;
95 }
96 for(size_t k=0;k<DMlist.size();k++)
97 { if(DMlist[k]==aDM->GetName()) return k; }
98 return -1;
99}
100
int G4int
Definition: G4Types.hh:85
G4GLOB_DLL std::ostream G4cerr
#define G4endl
Definition: G4ios.hh:57
~G4DCtable()
Definition: G4DCtable.cc:34
std::vector< G4String > DMlist
Definition: G4DCtable.hh:62
std::vector< G4String > DClist
Definition: G4DCtable.hh:63
G4int Registor(G4String SDname, G4String DCname)
Definition: G4DCtable.cc:36
G4int GetCollectionID(G4String DCname) const
Definition: G4DCtable.cc:45
G4int GetNumberOfCollections() const
G4String GetName() const
G4String GetCollectionName(G4int i) const