source: trunk/source/processes/hadronic/models/de_excitation/evaporation/src/G4TritonEvaporationProbability.cc @ 843

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

import all except CVS

File size: 4.3 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: G4TritonEvaporationProbability.cc,v 1.4 2006/06/29 20:10:47 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 "G4TritonEvaporationProbability.hh"
36
37G4TritonEvaporationProbability::G4TritonEvaporationProbability() :
38    G4EvaporationProbability(3,1,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    ExcitEnergies[15] = 6.26*MeV;
49    ExcitEnergies[17] = 3.59*MeV;
50    ExcitEnergies[18] = 6.76*MeV;
51    ExcitEnergies[20] = 6.34*MeV;
52    ExcitEnergies[23] = 7.34*MeV;
53    ExcitEnergies[25] = 5.11*MeV;
54    ExcitEnergies[26] = 7.57*MeV;
55    ExcitEnergies[28] = 7.28*MeV;
56    ExcitEnergies[31] = 4.46*MeV;
57
58    ExcitSpins[15] = 5;
59    ExcitSpins[17] = 5;
60    ExcitSpins[18] = 10;
61    ExcitSpins[20] = 2;
62    ExcitSpins[23] = 5;
63    ExcitSpins[25] = 5;
64    ExcitSpins[26] = 8;
65    ExcitSpins[28] = 8;
66    ExcitSpins[31] = 3;
67
68    SetExcitationEnergiesPtr(&ExcitEnergies);
69    SetExcitationSpinsPtr(&ExcitSpins); 
70}
71
72G4TritonEvaporationProbability::G4TritonEvaporationProbability(const G4TritonEvaporationProbability &) : G4EvaporationProbability()
73{
74    throw G4HadronicException(__FILE__, __LINE__, "G4TritonEvaporationProbability::copy_constructor meant to not be accessable");
75}
76
77
78
79
80const G4TritonEvaporationProbability & G4TritonEvaporationProbability::
81operator=(const G4TritonEvaporationProbability &)
82{
83    throw G4HadronicException(__FILE__, __LINE__, "G4TritonEvaporationProbability::operator= meant to not be accessable");
84    return *this;
85}
86
87
88G4bool G4TritonEvaporationProbability::operator==(const G4TritonEvaporationProbability &) const
89{
90    return false;
91}
92
93G4bool G4TritonEvaporationProbability::operator!=(const G4TritonEvaporationProbability &) const
94{
95    return true;
96}
97
98G4double G4TritonEvaporationProbability::CCoeficient(const G4double aZ) const
99{
100    // Data comes from
101    // Dostrovsky, Fraenkel and Friedlander
102    // Physical Review, vol 116, num. 3 1959
103    //
104    // const G4int size = 5;
105    // G4double Zlist[5] = { 10.0, 20.0, 30.0, 50.0, 70.0};
106    // G4double Cp[5] = { 0.50, 0.28, 0.20, 0.15, 0.10};
107    // C for triton is equal to C for protons divided by 3
108    G4double C = 0.0;
109       
110    if (aZ >= 70) {
111        C = 0.10;
112    } else {
113        C = ((((0.15417e-06*aZ) - 0.29875e-04)*aZ + 0.21071e-02)*aZ - 0.66612e-01)*aZ + 0.98375;
114    }
115       
116    return C/3.0;
117       
118}
Note: See TracBrowser for help on using the repository browser.