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