// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // $Id: G4CrossSectionChargeIncreasePartial.cc,v 1.2 2008/07/14 20:47:34 sincerti Exp $ // GEANT4 tag $Name: geant4-09-02-ref-02 $ #include "G4CrossSectionChargeIncreasePartial.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... G4CrossSectionChargeIncreasePartial::G4CrossSectionChargeIncreasePartial() { //ALPHA+ f0[0][0]=1.; a0[0][0]=2.25; a1[0][0]=-0.75; b0[0][0]=-32.10; c0[0][0]=0.600; d0[0][0]=2.40; x0[0][0]=4.60; x1[0][0]=-1.; b1[0][0]=-1.; numberOfPartialCrossSections[0]=1; //HELIUM f0[0][1]=1.; a0[0][1]=2.25; a1[0][1]=-0.75; b0[0][1]=-30.93; c0[0][1]=0.590; d0[0][1]=2.35; x0[0][1]=4.29; f0[1][1]=1.; a0[1][1]=2.25; a1[1][1]=-0.75; b0[1][1]=-32.61; c0[1][1]=0.435; d0[1][1]=2.70; x0[1][1]=4.45; x1[0][1]=-1.; b1[0][1]=-1.; x1[1][1]=-1.; b1[1][1]=-1.; numberOfPartialCrossSections[1]=2; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... G4CrossSectionChargeIncreasePartial::~G4CrossSectionChargeIncreasePartial() {} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... G4double G4CrossSectionChargeIncreasePartial::CrossSection(G4double k, G4int index, const G4ParticleDefinition* particleDefinition) { G4int particleTypeIndex = 0; G4DNAGenericIonsManager *instance; instance = G4DNAGenericIonsManager::Instance(); if (particleDefinition == instance->GetIon("alpha+")) particleTypeIndex=0; if (particleDefinition == instance->GetIon("helium")) particleTypeIndex=1; // // sigma(T) = f0 10 ^ y(log10(T/eV)) // // / a0 x + b0 x < x0 // | // y(x) = < a0 x + b0 - c0 (x - x0)^d0 x0 <= x < x1 // | // \ a1 x + b1 x >= x1 // // // f0, a0, a1, b0, b1, c0, d0, x0, x1 are parameters that change for protons and helium (0, +, ++) // // f0 has been added to the code in order to manage partial (shell-dependent) cross sections (if no shell dependence is present. f0=1. Sum of f0 over the considered shells should give 1) // // From Rad. Phys. and Chem. 59 (2000) 255-275, M. Dingfelder et al. // Inelastic-collision cross sections of liquid water for interactions of energetic proton // if (x1[index][particleTypeIndex]GetIon("hydrogen")) return 0; if (particleDefinition == instance->GetIon("alpha+")) particleTypeIndex=0; if (particleDefinition == instance->GetIon("helium")) particleTypeIndex=1; const G4int n = numberOfPartialCrossSections[particleTypeIndex]; G4double* values(new G4double[n]); G4double value = 0; G4int i = n; while (i>0) { i--; values[i]=CrossSection(k, i, particleDefinition); value+=values[i]; } value*=G4UniformRand(); i=n; while (i>0) { i--; if (values[i]>value) break; value-=values[i]; } delete[] values; return i; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... G4double G4CrossSectionChargeIncreasePartial::Sum(G4double k, const G4ParticleDefinition* particleDefinition) { G4int particleTypeIndex = 0; G4DNAGenericIonsManager *instance; instance = G4DNAGenericIonsManager::Instance(); if (particleDefinition == instance->GetIon("alpha+")) particleTypeIndex=0; if (particleDefinition == instance->GetIon("helium")) particleTypeIndex=1; G4double totalCrossSection = 0.; for (G4int i=0; i