Files
geant4/source/processes/hadronic/models/neutron_hp/include/G4NeutronHPNBodyPhaseSpace.hh
T
2016-06-08 16:57:27 +02:00

97 lines
3.2 KiB
C++

//
// ********************************************************************
// * DISCLAIMER *
// * *
// * The following disclaimer summarizes all the specific disclaimers *
// * of contributors to this software. The specific disclaimers,which *
// * govern, are listed with their locations in: *
// * http://cern.ch/geant4/license *
// * *
// * 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. *
// * *
// * This code implementation is the intellectual property of the *
// * GEANT4 collaboration. *
// * By copying, distributing or modifying the Program (or any work *
// * based on the Program) you indicate your acceptance of this *
// * statement, and all its terms. *
// ********************************************************************
//
//
// $Id: G4NeutronHPNBodyPhaseSpace.hh,v 1.8 2002/12/12 19:18:14 gunter Exp $
// GEANT4 tag $Name: geant4-05-00 $
//
#ifndef G4NeutronHPNBodyPhaseSpace_h
#define G4NeutronHPNBodyPhaseSpace_h 1
#include "G4ios.hh"
#include "g4std/fstream"
#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(G4std::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 = sqrt(anEnergy)*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/pow(GetEmax(anEnergy, mass),2);
if(theTotalCount==4) result = 105./32./pow(GetEmax(anEnergy, mass), 3.5);
if(theTotalCount==5) result = 256./14./pi/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