Geant4  10.01.p03
G4MolecularDissociationChannel.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 // Contact: Mathieu Karamitros (kara (AT) cenbg . in2p3 . fr)
27 //
28 // WARNING : This class is released as a prototype.
29 // It might strongly evolve or even disapear in the next releases.
30 //
31 // The code is developed in the framework of the ESA AO7146
32 //
33 // We would be very happy hearing from you, send us your feedback! :)
34 //
35 // In order for Geant4-DNA to be maintained and still open-source,
36 // article citations are crucial.
37 // If you use Geant4-DNA chemistry and you publish papers about your software,
38 // in addition to the general paper on Geant4-DNA:
39 //
40 // Int. J. Model. Simul. Sci. Comput. 1 (2010) 157–178
41 //
42 // we ask that you please cite the following reference papers on chemistry:
43 //
44 // J. Comput. Phys. 274 (2014) 841-882
45 // Prog. Nucl. Sci. Tec. 2 (2011) 503-508
46 //
47 // ----------------------------------------------------------------
48 // GEANT 4 class header file
49 //
50 // History: first implementation, Alfonso Mantero 6 Mar 2009
51 // ----------------------------------------------------------------
52 //
53 
54 #ifndef G4MolecularDecayChannel_h
55 #define G4MolecularDecayChannel_h 1
56 
57 #include <vector>
58 #include <map>
61 
62 // ######################################################################
63 // ### MolecularDecayChannel ###
64 // ######################################################################
65 
66 class G4Molecule;
67 
68 struct CompMoleculePointer;
69 
71 {
72  // Class Description
73  // This is where are stored and can be retrieved data of one decay channel
74  // of excited or ionized molecules: products. energy and probability.
75 
76 public: //With Description
77 
83 
84 public:
85 
86  //Root Mean Square radial distance thermalisation of a product
88 
89  // methods to construct decay channels "interactively"
90 
91  void AddProduct(const G4Molecule*,G4double = 0);
92  void AddProduct(const G4String& molecule, G4double displacement = 0);
93 
94  inline void SetName(const G4String&);
95  inline void SetEnergy(G4double);
96  inline void SetProbability(G4double);
97  inline void SetDecayTime(G4double);
100 
101  // get methods to retrieve data
102 
103  inline const G4String& GetName() const;
104  G4int GetNbProducts() const;
105  const G4Molecule* GetProduct(int) const;
106  inline const std::vector<G4double>& GetRMSProductsDisplacement() const;
107  inline G4double GetEnergy() const;
108  inline G4double GetProbability() const;
109  inline G4double GetDecayTime() const;
111  inline DisplacementType GetDisplacementType() const;
112 
113 private:
114 
117 // std::vector<G4MoleculeHandle>* fProductsVector;
118  std::vector<const G4Molecule*>* fProductsVector;
121  G4double fDecayTime; // To be taken into account in the next releases
122 
123  //Root Mean Square radial distance jump of a excited/ionised MotherMolecule molecule
125  std::vector<G4double> fRMSProductsDisplacementVector;
126 };
127 
129 {
130  fName = value;
131 }
132 
134 {
135  fReleasedEnergy = value;
136 }
137 
138 
140 {
141  fProbability = value;
142 }
143 
145 {
146 
147  fDecayTime = value;
148 }
149 
151 {
153 }
154 
156 {
157  return fName;
158 }
159 
160 inline const std::vector<G4double>& G4MolecularDissociationChannel::GetRMSProductsDisplacement() const
161 {
163 }
164 
166 {
167 
168  return fReleasedEnergy;
169 }
170 
172 {
173  return fProbability;
174 }
175 
177 {
178  return fDecayTime;
179 }
180 
182 {
184 }
185 
187 {
188  fDisplacementType = aDisplacementType;
189 }
190 
192 {
193  return fDisplacementType;
194 }
195 #endif
196 
197 
198 
199 
200 
201 
202 
203 
G4double GetRMSRadialDisplacementOfProduct(const G4Molecule *)
int G4int
Definition: G4Types.hh:78
void AddProduct(const G4Molecule *, G4double=0)
std::vector< G4double > fRMSProductsDisplacementVector
const G4Molecule * GetProduct(int) const
Class Description The dynamic molecule holds all the data that change for a molecule It has a pointer...
Definition: G4Molecule.hh:93
double G4double
Definition: G4Types.hh:76
std::vector< const G4Molecule * > * fProductsVector
G4MolecularDissociationChannel & operator=(const G4MolecularDissociationChannel &right)
const std::vector< G4double > & GetRMSProductsDisplacement() const