Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // INCL++ intra-nuclear cascade model 27 // Alain Boudard, CEA-Saclay, France 28 // Joseph Cugnon, University of Liege, Belgium 29 // Jean-Christophe David, CEA-Saclay, France 30 // Pekka Kaitaniemi, CEA-Saclay, France, and H 31 // Sylvie Leray, CEA-Saclay, France 32 // Davide Mancusi, CEA-Saclay, France 33 // 34 #define INCLXX_IN_GEANT4_MODE 1 35 36 #include "globals.hh" 37 38 /** \file G4INCLIFunction1D.cc 39 * \brief Functor for 1-dimensional mathematic 40 * 41 * \date 16 July 2011 42 * \author Davide Mancusi 43 */ 44 45 #include <algorithm> 46 #include <cmath> 47 #include <cstdlib> 48 #include "G4INCLIFunction1D.hh" 49 #include "G4INCLLogger.hh" 50 #include "G4INCLInvFInterpolationTable.hh" 51 52 namespace G4INCL { 53 54 const G4double IFunction1D::integrationCoeff 55 2.*95.0/288.0, 56 317.0/240.0, 57 23.0/30.0, 58 793.0/720.0, 59 157.0/160.0, 60 157.0/160.0, 61 793.0/720.0, 62 23.0/30.0, 63 317.0/240.0, 64 }; 65 66 G4double IFunction1D::integrate(const G4doub 67 G4double xi = std::max(x0, xMin); 68 G4double xa = std::min(x1, xMax); 69 G4double sign; 70 71 if(x1 <= x0) { 72 sign = -1.0; 73 std::swap(xi, xa); 74 } else 75 sign = 1.0; 76 77 const G4double interval = xa - xi; 78 79 G4int nIntervals; 80 if(step<0.) { 81 nIntervals = 45; 82 } else { 83 nIntervals = G4int(interval/step); 84 85 // Round up nIntervals to the closest mu 86 G4int remainder = nIntervals % 9; 87 if (remainder != 0) 88 nIntervals += 9 - remainder; 89 90 nIntervals = std::max(nIntervals, 9); 91 } 92 93 const G4double dx = interval/nIntervals; 94 G4double result = (operator()(xi) + operat 95 for(G4int j = 1; j<nIntervals; ++j) { 96 const G4double x = xi + interval*G4doubl 97 const unsigned index = j%9; 98 result += operator()(x) * integrationCoe 99 } 100 101 return result*dx*sign; 102 103 } 104 105 IFunction1D *IFunction1D::primitive() const 106 class Primitive : public IFunction1D { 107 public: 108 Primitive(IFunction1D const * const f) 109 IFunction1D(f->getXMinimum(), f->get 110 theFunction(f) 111 {} 112 113 G4double operator()(const G4double x) 114 return theFunction->integrate(xMin,x 115 } 116 private: 117 IFunction1D const * const theFunction; 118 } *thePrimitive = new Primitive(this); 119 120 return thePrimitive; 121 } 122 123 InterpolationTable *IFunction1D::inverseCDFT 124 class InverseCDF : public IFunction1D { 125 public: 126 InverseCDF(IFunction1D const * const f 127 IFunction1D(f->getXMinimum(), f->get 128 theFunction(f), 129 normalisation(1./theFunction->integr 130 fWrap(fw) 131 {} 132 133 G4double operator()(const G4double x) 134 if(fWrap) 135 return fWrap(std::min(1., normalis 136 else 137 return std::min(1., normalisation 138 } 139 private: 140 IFunction1D const * const theFunction; 141 const G4double normalisation; 142 ManipulatorFunc fWrap; 143 } *theInverseCDF = new InverseCDF(this, fW 144 145 InterpolationTable *theTable = new InvFInt 146 delete theInverseCDF; 147 return theTable; 148 } 149 } 150 151