Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4DecayTable.hh
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 // $Id: G4DecayTable.hh 67971 2013-03-13 10:13:24Z gcosmo $
28 //
29 //
30 // ------------------------------------------------------------
31 // GEANT 4 class header file
32 //
33 // History: first implementation, based on object model of
34 // 7 July 1996 H.Kurashige
35 //
36 // ----------------------------------------
37 // implementation for STL 14 Feb. 2000 H.Kurashige
38 //
39 // ------------------------------------------------------------
40 
41 #ifndef G4DecayTable_h
42 #define G4DecayTable_h 1
43 
44 #include "G4ios.hh"
45 #include <vector>
46 #include "globals.hh"
47 #include "G4ParticleDefinition.hh"
48 #include "G4VDecayChannel.hh"
49 
51 {
52  // Class Description
53  // G4DecayTable is the table of pointer to G4VDecayChannel.
54  // Decay channels inside is sorted by using decay branching ratio
55  //
56 
57  public:
58  typedef std::vector<G4VDecayChannel*> G4VDecayChannelVector;
59 
60  //constructors
61  public:
62  G4DecayTable();
63  ~G4DecayTable();
64 
65  private:
66  // hide copy constructor and assignment operator by declaring "private"
67  // (Implementation does not make sense )
68  G4DecayTable(const G4DecayTable &){};
69  G4DecayTable & operator=(const G4DecayTable &){return *this;};
70 
71  public:
72  // equality operators
73  G4int operator==(const G4DecayTable &right) const {return (this == &right);};
74  G4int operator!=(const G4DecayTable &right) const {return (this != &right);};
75 
76  public: // With Description
77  void Insert( G4VDecayChannel* aChannel);
78  // Insert a decay channel at proper position
79  // (i.e. sorted by using branching ratio )
80 
81  G4int entries() const;
82  // Returns number of decay channels inside
83 
84  public: // With Description
86  // A decay channel is selected at random according to the branching ratio
87 
90  // Get index-th Decay channel
91 
92  void DumpInfo() const;
93 
94  private:
95  G4ParticleDefinition *parent;
96  G4VDecayChannelVector *channels;
97 };
98 
99 inline
101 {
102  return channels->size();
103 }
104 
105 inline
107 {
108  return (*channels)[index];
109 }
110 
111 
112 inline
114 {
115  G4VDecayChannel* selectedChannel = 0;
116  if ( (index>=0) && (index<G4int(channels->size())) ){
117  selectedChannel = (*channels)[index];
118  }
119  return selectedChannel;
120 }
121 
122 
123 #endif
G4int operator!=(const G4DecayTable &right) const
Definition: G4DecayTable.hh:74
G4VDecayChannel * GetDecayChannel(G4int index) const
int G4int
Definition: G4Types.hh:78
G4int entries() const
G4VDecayChannel * operator[](G4int index)
void DumpInfo() const
G4VDecayChannel * SelectADecayChannel()
Definition: G4DecayTable.cc:81
void Insert(G4VDecayChannel *aChannel)
Definition: G4DecayTable.cc:60
std::vector< G4VDecayChannel * > G4VDecayChannelVector
Definition: G4DecayTable.hh:58
G4int operator==(const G4DecayTable &right) const
Definition: G4DecayTable.hh:73