Geant4  10.02.p01
G4VGammaDeexcitation.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 // $Id: G4VGammaDeexcitation.hh 88191 2015-02-02 17:27:37Z gcosmo $
27 //
28 // -------------------------------------------------------------------
29 // GEANT 4 class file
30 //
31 // CERN, Geneva, Switzerland
32 //
33 // File name: G4VGammaDeexcitation
34 //
35 // Author: Maria Grazia Pia (pia@genova.infn.it)
36 //
37 // Creation date: 23 October 1998
38 //
39 // Modifications:
40 //
41 // 15 April 1999, Alessandro Brunengo (Alessandro.Brunengo@ge.infn.it)
42 // Added creation time evaluation for products of evaporation
43 //
44 // 21 Nov 2001, Fan Lei (flei@space.qinetiq.com)
45 // Modified GenerateGamma() and UpdateUncleus() for implementation
46 // of Internal Conversion processs
47 //
48 // 8 March 2002, Fan Lei (flei@space.qinetiq.com)
49 // Added SetEO () , GetEO(), UpdateElectrons() to allow the assignment
50 // and modification of electron configuration.
51 //
52 // 18 October 2002, F. Lei
53 // Added GetVaccantSN() and _vSN in order to link to ARM in low-e em
54 // _vSN is updated in UpdateElectron()
55 // Added SetVaccantSN(). It is need to to re-set _vSN after each
56 // IC happened.
57 //
58 // 28 April 2010, V.Ivanchenko cleanup methods
59 //
60 // -------------------------------------------------------------------
61 //
62 
63 #ifndef G4VGAMMADEEXCITATION_HH
64 #define G4VGAMMADEEXCITATION_HH 1
65 
66 #include "globals.hh"
67 #include "G4VGammaTransition.hh"
68 #include "G4Fragment.hh"
69 #include "G4FragmentVector.hh"
70 #include "G4ElectronOccupancy.hh"
71 
73 
74 public:
75 
77 
78  virtual ~G4VGammaDeexcitation();
79 
80  virtual G4bool CanDoTransition(G4Fragment* aNucleus) = 0;
81 
82  // Chain of gamma transitions
83  void DoChain(G4FragmentVector*, G4Fragment* nucleus);
84 
86 
87  inline void SetVerboseLevel(G4int verbose){ _verbose = verbose; };
88 
89  //inline void Initialise();
90 
91  inline void SetEO(G4ElectronOccupancy eo) { _electronO = eo; };
92  inline void SetVaccantSN( G4int val ) { _vSN = val;};
93 
94  inline G4ElectronOccupancy GetEO() { return _electronO; };
95  inline G4int GetVacantSN() { return _vSN;};
96 
97  inline void SetTimeLimit(G4double value) { _timeLimit = value; }
98 
99 protected:
100 
105 
106 private:
107 
112 
115 
116 };
117 
118 #endif
119 
120 
121 
122 
123 
124 
const G4VGammaDeexcitation & operator=(const G4VGammaDeexcitation &right)
void SetEO(G4ElectronOccupancy eo)
G4ElectronOccupancy _electronO
void SetTimeLimit(G4double value)
int G4int
Definition: G4Types.hh:78
virtual G4bool CanDoTransition(G4Fragment *aNucleus)=0
bool G4bool
Definition: G4Types.hh:79
void SetVerboseLevel(G4int verbose)
std::vector< G4Fragment * > G4FragmentVector
Definition: G4Fragment.hh:63
G4bool operator==(const G4VGammaDeexcitation &right) const
G4bool operator!=(const G4VGammaDeexcitation &right) const
G4Fragment * GenerateGamma(G4Fragment *nucleus)
G4VGammaTransition * _transition
void SetVaccantSN(G4int val)
G4ElectronOccupancy GetEO()
double G4double
Definition: G4Types.hh:76
void DoChain(G4FragmentVector *, G4Fragment *nucleus)