// // ******************************************************************** // * 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.cc,v 1.13 2006/06/29 20:53:11 gunter Exp $ // GEANT4 tag $Name: geant4-09-02-ref-02 $ // #include "G4NeutronHPNBodyPhaseSpace.hh" #include "G4Gamma.hh" #include "G4Electron.hh" #include "G4Positron.hh" #include "G4Neutron.hh" #include "G4Proton.hh" #include "G4Deuteron.hh" #include "G4Triton.hh" #include "G4He3.hh" #include "G4Alpha.hh" #include "Randomize.hh" #include "G4ThreeVector.hh" G4ReactionProduct * G4NeutronHPNBodyPhaseSpace::Sample(G4double anEnergy, G4double massCode, G4double ) { G4ReactionProduct * result = new G4ReactionProduct; G4int Z = static_cast(massCode/1000); G4int A = static_cast(massCode-1000*Z); if(massCode==0) { result->SetDefinition(G4Gamma::Gamma()); } else if(A==0) { result->SetDefinition(G4Electron::Electron()); if(Z==1) result->SetDefinition(G4Positron::Positron()); } else if(A==1) { result->SetDefinition(G4Neutron::Neutron()); if(Z==1) result->SetDefinition(G4Proton::Proton()); } else if(A==2) { result->SetDefinition(G4Deuteron::Deuteron()); } else if(A==3) { result->SetDefinition(G4Triton::Triton()); if(Z==2) result->SetDefinition(G4He3::He3()); } else if(A==4) { result->SetDefinition(G4Alpha::Alpha()); if(Z!=2) throw G4HadronicException(__FILE__, __LINE__, "Unknown ion case 1"); } else { throw G4HadronicException(__FILE__, __LINE__, "G4NeutronHPNBodyPhaseSpace: Unknown ion case 2"); } // Get the energy from phase-space distribution // in CMS // P = Cn*std::sqrt(E')*(Emax-E')**(3*n/2-4) G4double maxE = GetEmax(anEnergy, result->GetMass()); G4double energy; G4double max(0); if(theTotalCount<=3) { max = maxE/2.; } else if(theTotalCount==4) { max = maxE/5.; } else if(theTotalCount==5) { max = maxE/8.; } else { throw G4HadronicException(__FILE__, __LINE__, "NeutronHP Phase-space distribution cannot cope with this number of particles"); } G4double testit; G4double rand0 = Prob(max, maxE, theTotalCount); G4double rand; do { rand = rand0*G4UniformRand(); energy = maxE*G4UniformRand(); testit = Prob(energy, maxE, theTotalCount); } while(rand > testit); result->SetKineticEnergy(energy); // now do random direction G4double cosTh = 2.*G4UniformRand()-1.; G4double phi = twopi*G4UniformRand(); G4double theta = std::acos(cosTh); G4double sinth = std::sin(theta); G4double mtot = result->GetTotalMomentum(); G4ThreeVector tempVector(mtot*sinth*std::cos(phi), mtot*sinth*std::sin(phi), mtot*std::cos(theta) ); result->SetMomentum(tempVector); G4ReactionProduct aCMS = *GetTarget()+*GetNeutron(); result->Lorentz(*result, -1.*aCMS); return result; }