// // ******************************************************************** // * 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: G4NeutronHPNBodyPhaseSpace.hh,v 1.12 2006/06/29 20:48:43 gunter Exp $ // GEANT4 tag $Name: geant4-09-03-ref-09 $ // #ifndef G4NeutronHPNBodyPhaseSpace_h #define G4NeutronHPNBodyPhaseSpace_h 1 #include "G4ios.hh" #include #include "globals.hh" #include "G4Neutron.hh" #include "G4VNeutronHPEnergyAngular.hh" #include "G4ReactionProduct.hh" class G4NeutronHPNBodyPhaseSpace : public G4VNeutronHPEnergyAngular { public: G4NeutronHPNBodyPhaseSpace(){} ~G4NeutronHPNBodyPhaseSpace(){} public: void Init(G4double aMass, G4int aCount) { theTotalMass=aMass; theTotalCount=aCount; } void Init(std::ifstream & aDataFile) { aDataFile >> theTotalMass >> theTotalCount; theTotalMass *= G4Neutron::Neutron()->GetPDGMass(); } G4ReactionProduct * Sample(G4double anEnergy, G4double massCode, G4double mass); private: inline G4double Prob(G4double anEnergy, G4double eMax, G4int n) { G4double result; result = std::sqrt(anEnergy)*std::pow(eMax-anEnergy, 3.*n/2.-4.); return result; } inline G4double C(G4double anEnergy, G4double mass) { G4double result(0); if(theTotalCount==3) result = 4./pi/std::pow(GetEmax(anEnergy, mass),2); if(theTotalCount==4) result = 105./32./std::pow(GetEmax(anEnergy, mass), 3.5); if(theTotalCount==5) result = 256./14./pi/std::pow(GetEmax(anEnergy, mass), 5.); return result; } inline G4double GetEmax(G4double anEnergy, G4double mass) { G4double result; G4double tMass = GetTarget()->GetMass(); G4double pMass = GetNeutron()->GetMass(); G4double availableEnergy = GetQValue() + anEnergy*tMass/(pMass+tMass); result = availableEnergy*(theTotalMass-mass)/theTotalMass; return result; } G4double MeanEnergyOfThisInteraction() {return -1; } private: G4double theTotalMass; G4int theTotalCount; }; #endif