// // ******************************************************************** // * 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: G4PreCompoundNucleon.cc,v 1.14 2010/08/28 15:16:55 vnivanch Exp $ // GEANT4 tag $Name: geant4-09-03-ref-09 $ // // ------------------------------------------------------------------- // // GEANT4 Class file // // // File name: G4PreCompoundNucleon // // Author: V.Lara // // Modified: // 10.02.2009 J. M. Quesada cleanup // 20.08.2010 V.Ivanchenko added G4Pow and G4PreCompoundParameters pointers // use int Z and A and cleanup // #include "G4PreCompoundNucleon.hh" G4PreCompoundNucleon:: G4PreCompoundNucleon(const G4ParticleDefinition* part, G4VCoulombBarrier* aCoulombBarrier) : G4PreCompoundFragment(part,aCoulombBarrier) { fact = 2*CLHEP::millibarn/(CLHEP::pi2*CLHEP::hbarc*CLHEP::hbarc*CLHEP::hbarc); } G4PreCompoundNucleon::~G4PreCompoundNucleon() {} G4double G4PreCompoundNucleon:: ProbabilityDistributionFunction(G4double eKin, const G4Fragment& aFragment) { if ( !IsItPossible(aFragment) ) { return 0.0; } G4double U = aFragment.GetExcitationEnergy(); G4int P = aFragment.GetNumberOfParticles(); G4int H = aFragment.GetNumberOfHoles(); G4int N = P + H; G4double g0 = (6.0/pi2)*aFragment.GetA_asInt()*theParameters->GetLevelDensity(); G4double g1 = (6.0/pi2)*GetRestA()*theParameters->GetLevelDensity(); G4double A0 = G4double(P*P+H*H+P-3*H)/(4.0*g0); G4double A1 = (A0 - 0.5*P)/g1; G4double E0 = U - A0; if (E0 <= 0.0) { return 0.0; } G4double E1 = U - eKin - GetBindingEnergy() - A1; if (E1 <= 0.0) { return 0.0; } G4double rj = GetRj(P, aFragment.GetNumberOfCharged()); G4double xs = CrossSection(eKin); if (rj <0.0 || xs < 0.0) { std::ostringstream errOs; G4cout<<"WARNING: NEGATIVE VALUES "<