source: trunk/source/processes/hadronic/models/de_excitation/evaporation/src/G4He3EvaporationProbability.cc @ 847

Last change on this file since 847 was 819, checked in by garnier, 16 years ago

import all except CVS

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: G4He3EvaporationProbability.cc,v 1.4 2006/06/29 20:10:35 gunter Exp $
28// GEANT4 tag $Name: geant4-09-01-patch-02 $
29//
30// Hadronic Process: Nuclear De-excitations
31// by V. Lara (Nov 1999)
32//
33
34
35#include "G4He3EvaporationProbability.hh"
36
37G4He3EvaporationProbability::G4He3EvaporationProbability() :
38    G4EvaporationProbability(3,2,6) // A,Z,Gamma
39{
40    std::vector<G4double>::size_type NumExcitedStatesEnergy = 31+1;
41    std::vector<G4int>::size_type NumExcitedStatesSpin = 31+1;
42    ExcitEnergies.reserve(NumExcitedStatesEnergy);
43    ExcitSpins.reserve(NumExcitedStatesSpin);
44    ExcitEnergies.insert(ExcitEnergies.begin(),NumExcitedStatesEnergy,0.0);
45    ExcitSpins.insert(ExcitSpins.begin(),NumExcitedStatesSpin,0);
46
47
48       
49    ExcitEnergies[18] = 7.29*MeV;
50    ExcitEnergies[20] = 6.48*MeV;
51    ExcitEnergies[25] = 5.69*MeV;
52    ExcitEnergies[26] = 8.31*MeV;
53    ExcitEnergies[31] = 5.10*MeV;
54
55    ExcitSpins[18] = 6;
56    ExcitSpins[20] = 8;
57    ExcitSpins[25] = 3;
58    ExcitSpins[26] = 2;
59    ExcitSpins[31] = 7; 
60       
61    SetExcitationEnergiesPtr(&ExcitEnergies);
62    SetExcitationSpinsPtr(&ExcitSpins); 
63}
64
65G4He3EvaporationProbability::G4He3EvaporationProbability(const G4He3EvaporationProbability &) : G4EvaporationProbability()
66{
67    throw G4HadronicException(__FILE__, __LINE__, "G4He3EvaporationProbability::copy_constructor meant to not be accessable");
68}
69
70
71
72
73const G4He3EvaporationProbability & G4He3EvaporationProbability::
74operator=(const G4He3EvaporationProbability &)
75{
76    throw G4HadronicException(__FILE__, __LINE__, "G4He3EvaporationProbability::operator= meant to not be accessable");
77    return *this;
78}
79
80
81G4bool G4He3EvaporationProbability::operator==(const G4He3EvaporationProbability &) const
82{
83    return false;
84}
85
86G4bool G4He3EvaporationProbability::operator!=(const G4He3EvaporationProbability &) const
87{
88    return true;
89}
90
91G4double G4He3EvaporationProbability::CCoeficient(const G4double aZ) const
92{
93    // Data comes from
94    // Dostrovsky, Fraenkel and Friedlander
95    // Physical Review, vol 116, num. 3 1959
96    //
97    // const G4int size = 5;
98    // G4double Zlist[5] = { 10.0, 20.0, 30.0, 50.0, 70.0};
99    //  G4double Calpha[5] = { 0.10, 0.10, 0.10, 0.08, 0.06};
100    // C for He3 is equal to C for alpha times 4/3
101    G4double C = 0.0;
102       
103       
104    if (aZ <= 30) {
105        C = 0.10;
106    } else if (aZ <= 50) {
107        C = 0.1 + -((aZ-50.)/20.)*0.02;
108    } else if (aZ < 70) {
109        C = 0.08 + -((aZ-70.)/20.)*0.02;
110    } else {
111        C = 0.06;
112    }
113    return C*(4.0/3.0);
114}
Note: See TracBrowser for help on using the repository browser.