source: trunk/source/particles/management/include/G4DecayTable.hh @ 921

Last change on this file since 921 was 850, checked in by garnier, 16 years ago

geant4.8.2 beta

File size: 4.1 KB
Line 
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,v 1.9 2006/06/29 19:22:47 gunter Exp $
28// GEANT4 tag $Name: HEAD $
29//
30//
31// ------------------------------------------------------------
32//      GEANT 4 class header file
33//
34//      History: first implementation, based on object model of
35//      7 July 1996 H.Kurashige
36//
37// ----------------------------------------
38//      implementation for STL          14 Feb. 2000 H.Kurashige
39//     
40// ------------------------------------------------------------
41
42#ifndef G4DecayTable_h
43#define G4DecayTable_h 1
44
45#include "G4ios.hh"
46#include <vector>
47#include "globals.hh"
48#include "G4ParticleDefinition.hh"
49#include "G4VDecayChannel.hh"
50
51class G4DecayTable 
52{
53 // Class Description
54 //   G4DecayTable is the table of pointer to G4VDecayChannel.
55 //   Decay channels inside is sorted by using decay branching ratio
56 //
57
58 public:
59  typedef std::vector<G4VDecayChannel*> G4VDecayChannelVector;
60
61  //constructors
62 public:
63    G4DecayTable();
64    ~G4DecayTable();
65
66 private:
67  // hide copy constructor and assignment operator by declaring "private"
68  //  (Implementation does not make sense )
69    G4DecayTable(const G4DecayTable &){};
70    G4DecayTable & operator=(const G4DecayTable &){return *this;};
71
72 public:
73    // equality operators
74    G4int operator==(const G4DecayTable &right) const {return (this == &right);};
75    G4int operator!=(const G4DecayTable &right) const {return (this != &right);};
76
77 public: // With Description
78    void  Insert( G4VDecayChannel* aChannel);
79    // Insert a decay channel at proper position
80    // (i.e. sorted by using branching ratio )
81
82    G4int entries() const;
83    // Returns number of decay channels inside
84
85 public: // With Description
86    G4VDecayChannel* SelectADecayChannel();
87    // A decay channel is selected at random according to the branching ratio
88 
89    G4VDecayChannel* GetDecayChannel(G4int index) const;
90    G4VDecayChannel* operator[](G4int index);
91    // Get index-th Decay channel
92 
93    void DumpInfo() const;
94
95 private:
96    G4ParticleDefinition       *parent;
97    G4VDecayChannelVector       *channels;
98};
99
100inline     
101 G4int G4DecayTable::entries() const
102{
103  return channels->size();
104}
105
106inline     
107 G4VDecayChannel* G4DecayTable::operator[](G4int index)
108{
109  return (*channels)[index];
110}
111
112 
113inline     
114 G4VDecayChannel* G4DecayTable::GetDecayChannel(G4int index) const
115{
116  G4VDecayChannel* selectedChannel = 0;
117  if ( (index>=0) && (index<G4int(channels->size())) ){
118    selectedChannel = (*channels)[index];
119  }
120  return selectedChannel;
121}
122 
123 
124#endif
Note: See TracBrowser for help on using the repository browser.