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

Last change on this file since 1340 was 1340, checked in by garnier, 14 years ago

update ti head

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