source: trunk/source/processes/hadronic/models/cascade/cascade/src/paraMaker.cc @ 1340

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

update ti head

File size: 4.2 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// $Id: paraMaker.cc,v 1.19 2010/09/14 17:51:36 mkelsey Exp $
27// Geant4 tag: $Name: hadr-casc-V09-03-85 $
28//
29// 20100412  M. Kelsey -- Modify paraMaker[Truncated] to take buffer as argument
30// 20100517  M. Kelsey -- BUG FIX:  Must check for array boundary "if (Z>=70)"
31// 20100517  M. Kelsey -- Use G4CascadeInterpolator, which handles boundaries
32// 20100601  M. Kelsey -- Bug fix from Gunter Folger; resize(6,0.), not clear()
33// 20100914  M. Kelsey -- Migrate to integer A and Z
34
35#include "G4InuclSpecialFunctions.hh"
36#include "G4CascadeInterpolator.hh"
37
38void 
39G4InuclSpecialFunctions::paraMaker(G4double Z,
40           std::pair<std::vector<G4double>, std::vector<G4double> >& parms) {
41  G4int verboseLevel(0);
42
43  if (verboseLevel > 3) {
44    G4cout << " >>> G4InuclSpecialFunctions::paraMaker" << G4endl;
45  }
46
47  // calculates the coefficients for the phenomenological formulas for
48  // coulumb barier, c.s. etc needed for evaporators
49
50  static const G4double Z1[5] = {10.0, 20.0, 30.0, 50.0, 70.0};
51  static const G4double AP[5] = {0.42, 0.58, 0.68, 0.77, 0.80};
52  static const G4double CP[5] = {0.50, 0.28, 0.20, 0.15, 0.10};
53  static const G4double AA[5] = {0.68, 0.82, 0.91, 0.97, 0.98};
54  static const G4double CA[5] = {0.10, 0.10, 0.10, 0.08, 0.06};
55
56  // Set up input buffer for results
57  std::vector<G4double>& AK = parms.first; 
58  AK.resize(6,0.);
59
60  std::vector<G4double>& CPA = parms.second;
61  CPA.resize(6,0.);
62
63  AK[0] = 0.0;
64  CPA[0] = 0.0;
65
66  static G4CascadeInterpolator<5> interp(Z1, false);    // Do not extrapolate
67  AK[1]  = interp.interpolate(Z, AP);
68  AK[5]  = interp.interpolate(Z, AA);
69  CPA[1] = interp.interpolate(Z, CP);
70  CPA[5] = interp.interpolate(Z, CA);
71 
72  AK[2] = AK[1] + 0.06;
73  AK[3] = AK[1] + 0.12;
74  AK[4] = AK[5] - 0.06;
75
76  CPA[2] = CPA[1] * 0.5;
77  CPA[3] = CPA[1] / 3.0; 
78  CPA[4] = 4.0 * CPA[5] / 3.0;
79
80  return;       // Buffer filled
81}
82
83void 
84G4InuclSpecialFunctions::paraMakerTruncated(G4double Z,
85                                    std::pair<G4double,G4double>& parms) {
86  G4int verboseLevel(0);
87
88  if (verboseLevel > 3) {
89    G4cout << " >>> G4InuclSpecialFunctions::paraMakerTruncated" << G4endl;
90  }
91
92  // truncated version of the previous one
93  static const G4double Z1[5] = {10.0, 20.0, 30.0, 50.0, 70.0};
94  static const G4double AP[5] = {0.42, 0.58, 0.68, 0.77, 0.8};
95  static const G4double CP[5] = {0.5, 0.28, 0.2, 0.15, 0.1};
96
97  // Set up buffers for output
98  G4double& AK2=parms.first;
99  G4double& CP2=parms.second;
100
101  static G4CascadeInterpolator<5> interp(Z1, false);            // Do not extrapolate
102  AK2 = interp.interpolate(Z, AP);
103  CP2 = interp.interpolate(Z, CP);
104
105  return;       // Buffer filled
106}
Note: See TracBrowser for help on using the repository browser.