source: trunk/source/processes/hadronic/models/de_excitation/gem_evaporation/src/G4AlphaGEMProbability.cc @ 962

Last change on this file since 962 was 962, checked in by garnier, 15 years ago

update processes

File size: 3.8 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: G4AlphaGEMProbability.cc,v 1.4 2006/06/29 20:20:21 gunter Exp $
28// GEANT4 tag $Name: geant4-09-02-ref-02 $
29//
30// Hadronic Process: Nuclear De-excitations
31// by V. Lara (Nov 1999)
32//
33
34
35#include "G4AlphaGEMProbability.hh"
36
37G4AlphaGEMProbability::G4AlphaGEMProbability() :
38    G4GEMProbability(4,2,0.0) // A,Z,Gamma
39{
40    ExcitEnergies.push_back(20.01E+3*keV);
41    ExcitSpins.push_back(0.0);
42    ExcitLifetimes.push_back(207.0*keV);
43
44    ExcitEnergies.push_back(21.18E+3*keV);
45    ExcitSpins.push_back(0.0);
46    ExcitLifetimes.push_back(0.73*MeV);
47
48    ExcitEnergies.push_back(22.02E+3*keV);
49    ExcitSpins.push_back(2.0);
50    ExcitLifetimes.push_back(1.83*MeV);
51
52    ExcitEnergies.push_back(25.33E+3*keV);
53    ExcitSpins.push_back(1.0);
54    ExcitLifetimes.push_back(2.36*MeV);
55
56    SetExcitationEnergiesPtr(&ExcitEnergies);
57    SetExcitationSpinsPtr(&ExcitSpins);
58    SetExcitationLifetimesPtr(&ExcitLifetimes);
59}
60
61
62G4AlphaGEMProbability::G4AlphaGEMProbability(const G4AlphaGEMProbability &) : G4GEMProbability()
63{
64    throw G4HadronicException(__FILE__, __LINE__, "G4AlphaGEMProbability::copy_constructor meant to not be accessable");
65}
66
67
68
69
70const G4AlphaGEMProbability & G4AlphaGEMProbability::
71operator=(const G4AlphaGEMProbability &)
72{
73    throw G4HadronicException(__FILE__, __LINE__, "G4AlphaGEMProbability::operator= meant to not be accessable");
74    return *this;
75}
76
77
78G4bool G4AlphaGEMProbability::operator==(const G4AlphaGEMProbability &) const
79{
80    return false;
81}
82
83G4bool G4AlphaGEMProbability::operator!=(const G4AlphaGEMProbability &) const
84{
85    return true;
86}
87
88
89G4double G4AlphaGEMProbability::CCoeficient(const G4double aZ) const
90{
91    // Data comes from
92    // Dostrovsky, Fraenkel and Friedlander
93    // Physical Review, vol 116, num. 3 1959
94    //
95    // const G4int size = 5;
96    // G4double Zlist[5] = { 10.0, 20.0, 30.0, 50.0, 70.0};
97    //  G4double Calpha[5] = { 0.10, 0.10, 0.10, 0.08, 0.06};
98    G4double C = 0.0;
99       
100       
101    if (aZ <= 30) {
102        C = 0.10;
103    } else if (aZ <= 50) {
104        C = 0.1 + -((aZ-50.)/20.)*0.02;
105    } else if (aZ < 70) {
106        C = 0.08 + -((aZ-70.)/20.)*0.02;
107    } else {
108        C = 0.06;
109    }
110    return C;
111}
112
Note: See TracBrowser for help on using the repository browser.