Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4PhotonEvaporation.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: G4PhotonEvaporation.hh 70091 2013-05-23 08:55:18Z gcosmo $
27 //
28 // -------------------------------------------------------------------
29 // GEANT 4 class file
30 //
31 // CERN, Geneva, Switzerland
32 //
33 // File name: G4PhotonEvaporation
34 //
35 // Author: Maria Grazia Pia (pia@genova.infn.it)
36 //
37 // Creation date: 23 October 1998
38 //
39 //Modifications:
40 //
41 // 18 October 2002, Fan Lei (flei@space.qinetiq.com)
42 //
43 // Implementation of Internal Convertion process in discrete deexcitation
44 // The following public methods have been added.
45 //
46 // void SetICM (G4bool);
47 // void RDMForced(G4bool);
48 // void SetMaxHalfLife(G4double) ;
49 // void SetEOccupancy( G4ElectronOccupancy eOccupancy) ;
50 // G4ElectronOccupancy GetEOccupancy () ;
51 // G4int GetVacantShellNumber () { return _vShellNumber;};
52 //
53 // and the following priivate menbers
54 //
55 // G4ElectronOccupancy _eOccupancy;
56 // G4int _vShellNumber;
57 //
58 // 11 May 2010, V.Ivanchenko added EmittedFragment and BreakUpFragment
59 // methods
60 //
61 // -------------------------------------------------------------------
62 
63 #ifndef G4PHOTONEVAPORATION_HH
64 #define G4PHOTONEVAPORATION_HH 1
65 
66 #include "globals.hh"
67 #include "G4VEvaporationChannel.hh"
69 #include "G4VGammaDeexcitation.hh"
70 #include "G4ElectronOccupancy.hh"
71 
72 class G4Fragment;
73 
75 
76 public:
77 
78  G4PhotonEvaporation(const G4String & aName = "Anonymous",
80 
81  virtual ~G4PhotonEvaporation();
82 
83  virtual G4Fragment* EmittedFragment(G4Fragment* theNucleus);
84 
85  virtual G4FragmentVector* BreakUpFragment(G4Fragment* theNucleus);
86 
87  virtual G4FragmentVector * BreakItUp(const G4Fragment & nucleus);
88 
89  virtual G4FragmentVector * BreakUp(const G4Fragment & nucleus);
90 
91  virtual G4double GetEmissionProbability(G4Fragment* theNucleus);
92 
93  virtual void SetEmissionStrategy(G4VEmissionProbability * probAlgorithm);
94 
95  void SetVerboseLevel(G4int verbose);
96 
97  void SetICM (G4bool);
98 
99  void RDMForced (G4bool);
100 
101  void SetMaxHalfLife(G4double);
102 
104 
105  void SetEOccupancy( G4ElectronOccupancy eOccupancy) ;
106 
107  G4ElectronOccupancy GetEOccupancy () { return eOccupancy;} ;
108 
109  G4int GetVacantShellNumber () { return vShellNumber;};
110 
111 private:
112 
113  G4int verbose;
114  G4bool myOwnProbAlgorithm;
115  G4VEmissionProbability * probAlgorithm;
116  G4VGammaDeexcitation * discrDeexcitation;
117  G4VGammaDeexcitation * contDeexcitation;
118 
119  G4ElectronOccupancy eOccupancy;
120  G4int vShellNumber;
121 
122  G4Fragment* nucleus;
123  G4double gammaE;
124 
126  const G4PhotonEvaporation & operator = (const G4PhotonEvaporation & right);
127 
128  G4bool operator == (const G4PhotonEvaporation & right) const;
129  G4bool operator != (const G4PhotonEvaporation & right) const;
130 
131 };
132 
133 #endif
134 
135 
136 
void SetMaxHalfLife(G4double)
G4EvaporationChannelType
G4ElectronOccupancy GetEOccupancy()
int G4int
Definition: G4Types.hh:78
G4PhotonEvaporation(const G4String &aName="Anonymous", G4EvaporationChannelType timeType=fDelayedEmission)
bool G4bool
Definition: G4Types.hh:79
std::vector< G4Fragment * > G4FragmentVector
Definition: G4Fragment.hh:65
virtual G4FragmentVector * BreakUp(const G4Fragment &nucleus)
virtual G4double GetEmissionProbability(G4Fragment *theNucleus)
void SetTimeLimit(G4double value)
virtual G4FragmentVector * BreakItUp(const G4Fragment &nucleus)
const XML_Char int const XML_Char * value
virtual G4Fragment * EmittedFragment(G4Fragment *theNucleus)
virtual G4FragmentVector * BreakUpFragment(G4Fragment *theNucleus)
double G4double
Definition: G4Types.hh:76
void SetEOccupancy(G4ElectronOccupancy eOccupancy)
virtual void SetEmissionStrategy(G4VEmissionProbability *probAlgorithm)
void SetVerboseLevel(G4int verbose)