Geant4  10.01
G4PhotonEvaporation.cc
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.cc 87376 2014-12-02 08:25:05Z 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 // 8 March 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 CallFromRDM(G4bool);
48 // void SetMaxHalfLife(G4double) ;
49 // void SetEOccupancy( G4ElectronOccupancy eOccupancy) ;
50 // G4ElectronOccupancy GetEOccupancy () ;
51 //
52 // 11 May 2010, V.Ivanchenko add implementation of EmittedFragment and
53 // BreakUpFragment methods; cleanup logic
54 //
55 // -------------------------------------------------------------------
56 //
57 
58 #include "G4PhotonEvaporation.hh"
59 
60 #include "globals.hh"
61 #include "G4SystemOfUnits.hh"
62 #include "Randomize.hh"
63 #include "G4Gamma.hh"
64 #include "G4LorentzVector.hh"
65 #include "G4VGammaTransition.hh"
66 #include "G4Fragment.hh"
67 #include "G4FragmentVector.hh"
70 #include "G4E1Probability.hh"
71 #include "G4NuclearLevelStore.hh"
72 
73 static const G4double tolerance = 2*CLHEP::keV;
74 
76  G4EvaporationChannelType timeType)
77  : G4VEvaporationChannel(aName, timeType),
78  verbose(0), myOwnProbAlgorithm(true),
79  eOccupancy(0), vShellNumber(-1), gammaE(0.)
80 {
85 
86  p->SetICM(false);
87 
88  // Time limits
89  G4double timeLimit = DBL_MAX;
90  char* env = getenv("G4AddTimeLimitToPhotonEvaporation");
91  if(env) { timeLimit = 1.e-16*second; }
92 
93  // Time for short-cut simulation of photon evaporation
94  p->SetTimeLimit(timeLimit);
95 
96  // Time limit for isomere production
97  SetMaxHalfLife(1.e-6*second);
98 
99  nucleus = 0;
100 }
101 
103 {
105  delete discrDeexcitation;
106  delete contDeexcitation;
107 }
108 
110 {
111  //G4cout << "G4PhotonEvaporation::EmittedFragment" << G4endl;
112  G4Fragment* gamma = contDeexcitation->GenerateGamma(aNucleus);
113  if(gamma) {
114  if (verbose > 1) {
115  G4cout << "G4PhotonEvaporation::EmittedFragment continium deex: "
116  << gamma << G4endl;
117  G4cout << " Residual: " << aNucleus << G4endl;
118  }
119  } else {
120 
121  // Do one photon emission by the discrete deexcitation
122  gamma = discrDeexcitation->GenerateGamma(aNucleus);
123  if(gamma) {
124  if (verbose > 1) {
125  G4cout << "G4PhotonEvaporation::EmittedFragment discrete deex: "
126  << gamma << G4endl;
127  G4cout << " Residual: " << aNucleus << G4endl;
128  }
129  }
130  }
131  return gamma;
132 }
133 
135  G4Fragment* aNucleus)
136 {
137  //G4cout << "G4PhotonEvaporation::BreakUpChain" << G4endl;
138 
139  // one continues emission is not excluded
140  G4Fragment* gamma = contDeexcitation->GenerateGamma(aNucleus);
141  if(gamma) {
142  if (verbose > 1) {
143  G4cout << "G4PhotonEvaporation::EmittedFragment continium deex: "
144  << gamma << G4endl;
145  G4cout << " Residual: " << aNucleus << G4endl;
146  }
147  products->push_back(gamma);
148  }
149  // main emissions are discrete
150  discrDeexcitation->DoChain(products, aNucleus);
151  return false;
152 }
153 
155 {
156  //G4cout << "G4PhotonEvaporation::BreakUpFragment" << G4endl;
157  G4FragmentVector* products = new G4FragmentVector();
158  BreakUpChain(products, aNucleus);
159  return products;
160 }
161 
163 {
164  //G4cout << "G4PhotonEvaporation::BreakUp" << G4endl;
165  G4Fragment* aNucleus = new G4Fragment(theNucleus);
166  G4FragmentVector* products = new G4FragmentVector();
167  BreakUpChain(products, aNucleus);
168  products->push_back(aNucleus);
169  return products;
170 }
171 
173 {
174  //G4cout << "G4PhotonEvaporation::BreakItUp" << G4endl;
175  G4Fragment* aNucleus = new G4Fragment(theNucleus);
176  G4FragmentVector* products = new G4FragmentVector();
177  BreakUpChain(products, aNucleus);
178  products->push_back(aNucleus);
179  return products;
180 }
181 
182 G4double
184 {
185  G4double prob = 0.0;
186  G4int Z = theNucleus->GetZ_asInt();
187  G4int A = theNucleus->GetA_asInt();
188  G4double eexc = theNucleus->GetExcitationEnergy();
189  if(0 < Z && Z < A && eexc > tolerance) {
190  prob = probAlgorithm->EmissionProbability(*theNucleus, eexc);
191  }
192  return prob;
193 }
194 
195 void
197 {
198  if(myOwnProbAlgorithm) { delete probAlgorithm; }
199  probAlgorithm = alg;
200  myOwnProbAlgorithm = false;
201 }
202 
204 {
205  verbose = verb;
208 }
209 
211 {
213 }
214 
216 {
217  static_cast<G4DiscreteGammaDeexcitation*>(discrDeexcitation)->SetHL(hl);
218 }
219 
221 {
223 }
224 
226 {
227  static_cast<G4DiscreteGammaDeexcitation*>(discrDeexcitation)->SetRDM(fromRDM);
228 }
229 
231 {
233 }
234 
235 
236 
237 
virtual G4bool BreakUpChain(G4FragmentVector *theResult, G4Fragment *theNucleus)
void SetMaxHalfLife(G4double)
G4EvaporationChannelType
void SetEO(G4ElectronOccupancy eo)
static const G4double tolerance
void SetTimeLimit(G4double value)
int G4int
Definition: G4Types.hh:78
G4VEmissionProbability * probAlgorithm
G4PhotonEvaporation(const G4String &aName="Anonymous", G4EvaporationChannelType timeType=fDelayedEmission)
G4GLOB_DLL std::ostream G4cout
G4int GetA_asInt() const
Definition: G4Fragment.hh:243
G4VGammaDeexcitation * discrDeexcitation
bool G4bool
Definition: G4Types.hh:79
void SetVerboseLevel(G4int verbose)
std::vector< G4Fragment * > G4FragmentVector
Definition: G4Fragment.hh:65
static const double second
Definition: G4SIunits.hh:138
virtual G4FragmentVector * BreakUp(const G4Fragment &nucleus)
virtual G4double GetEmissionProbability(G4Fragment *theNucleus)
static const G4double A[nN]
G4Fragment * GenerateGamma(G4Fragment *nucleus)
void SetTimeLimit(G4double value)
G4VGammaDeexcitation * contDeexcitation
G4int GetZ_asInt() const
Definition: G4Fragment.hh:248
virtual G4FragmentVector * BreakItUp(const G4Fragment &nucleus)
#define G4endl
Definition: G4ios.hh:61
virtual G4Fragment * EmittedFragment(G4Fragment *theNucleus)
static const double keV
Definition: G4SIunits.hh:195
virtual G4FragmentVector * BreakUpFragment(G4Fragment *theNucleus)
double G4double
Definition: G4Types.hh:76
void SetEOccupancy(G4ElectronOccupancy eOccupancy)
virtual G4double EmissionProbability(const G4Fragment &fragment, const G4double anEnergy)=0
#define DBL_MAX
Definition: templates.hh:83
virtual void SetEmissionStrategy(G4VEmissionProbability *probAlgorithm)
G4double GetExcitationEnergy() const
Definition: G4Fragment.hh:260
void SetVerboseLevel(G4int verbose)
void DoChain(G4FragmentVector *, G4Fragment *nucleus)