Files
geant4/source/processes/hadronic/stopping/src/G4PiMinusStopMaterial.cc
T
2016-06-08 16:03:00 +02:00

200 lines
5.0 KiB
C++

// 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: G4PiMinusStopMaterial.cc,v 1.4 2000/04/18 17:18:37 pia Exp $
// GEANT4 tag $Name: geant4-03-01 $
//
// -------------------------------------------------------------------
// GEANT 4 class file --- Copyright CERN 1998
// CERN Geneva Switzerland
//
// For information related to this code contact:
// CERN, IT Division, ASD group
//
// File name: G4PiMinusStopMaterial
//
// Author: Maria Grazia Pia (pia@genova.infn.it)
//
// Creation date: 8 May 1998
//
// Modifications:
// -------------------------------------------------------------------
#include "G4ios.hh"
#include "G4PiMinusStopMaterial.hh"
#include "g4rw/tpordvec.h"
#include "g4rw/tvordvec.h"
#include "g4rw/cstring.h"
#include "globals.hh"
#include "Randomize.hh"
#include "G4Proton.hh"
#include "G4Neutron.hh"
#include "G4PionMinus.hh"
#include "G4ParticleTypes.hh"
#include "G4ReactionKinematics.hh"
#include "G4DynamicParticleVector.hh"
#include "G4LorentzVector.hh"
#include "G4NucleiPropertiesTable.hh"
#include "G4PiMinusStopMaterial.hh"
#include "G4DistributionGenerator.hh"
// Constructor
G4PiMinusStopMaterial::G4PiMinusStopMaterial()
{
// _definitions = new G4RWTPtrOrderedVector<G4ParticleDefinition>();
// _momenta = new G4RWTPtrOrderedVector<G4LorentzVector>();
_definitions = 0;
_momenta = 0;
_distributionE = 0;
_distributionAngle = 0;
}
// Destructor
G4PiMinusStopMaterial::~G4PiMinusStopMaterial()
{
// _definitions->clear();
if (_definitions != 0) delete _definitions;
_definitions = 0;
_momenta->clearAndDestroy();
if (_momenta != 0) delete _momenta;
delete _distributionE;
delete _distributionAngle;
}
G4RWTPtrOrderedVector<G4ParticleDefinition>* G4PiMinusStopMaterial::DefinitionVector()
{
_definitions->append(G4Neutron::Neutron());
G4double ranflat = G4UniformRand();
if (ranflat < theR)
{ _definitions->append(G4Proton::Proton()); }
else
{ _definitions->append(G4Neutron::Neutron()); }
return _definitions;
}
G4RWTPtrOrderedVector<G4LorentzVector>* G4PiMinusStopMaterial::P4Vector(const G4double binding,
const G4double massNucleus)
{
// Generate energy of direct absorption products according to experimental data
// The energy distribution of the two nucleons is assumed to be the same
// for protons and neutrons
G4double eKin1;
G4double eKin2;
G4double eRecoil;
// Assume absorption on two nucleons
G4int nNucleons = 2;
G4double availableE = G4PionMinus::PionMinus()->GetPDGMass() - nNucleons * binding;
G4LorentzVector p1;
G4LorentzVector p2;
do
{
G4double ranflat;
G4double p;
G4double energy;
G4double mass;
ranflat = G4UniformRand();
eKin1 = _distributionE->Generate(ranflat);
mass = (*_definitions)[0]->GetPDGMass();
energy = eKin1 + mass;
p = sqrt(energy*energy - mass*mass);
G4double theta1 = GenerateAngle(pi);
G4double phi1 = GenerateAngle(2.*pi);
p1 = MakeP4(p,theta1,phi1,energy);
ranflat = G4UniformRand();
eKin2 = _distributionE->Generate(ranflat);
mass = (*_definitions)[1]->GetPDGMass();
energy = eKin2 + mass;
p = sqrt(energy*energy - mass*mass);
ranflat = G4UniformRand();
G4double opAngle = _distributionAngle->Generate(ranflat);
G4double theta2 = theta1 + opAngle;
G4double phi2 = phi1 + opAngle;
p2 = MakeP4(p,theta2,phi2,energy);
G4double pNucleus = (p1.vect() + p2.vect()).mag();
eRecoil = sqrt(pNucleus*pNucleus + massNucleus*massNucleus) - massNucleus;
// ---- Debug
// G4cout << " ---- binding = " << binding << ", nucleus mass = " << massNucleus
// << ", p nucleus = " << pNucleus << G4endl;
// G4cout << "eKin1,2 " << eKin1 << " " << eKin2 << " eRecoil " << eRecoil
// << " availableE " << availableE << G4endl;
// ----
} while ((eKin1 + eKin2 + eRecoil) > availableE);
_momenta->append(new G4LorentzVector(p1));
_momenta->append(new G4LorentzVector(p2));
return _momenta;
}
G4double G4PiMinusStopMaterial::GenerateAngle(G4double x)
{
G4double ranflat = G4UniformRand();
G4double value = ranflat * x;
return value;
}
G4LorentzVector G4PiMinusStopMaterial::MakeP4(G4double p, G4double theta, G4double phi, G4double e)
{
// G4LorentzVector p4;
G4double px = p * sin(theta) * cos(phi);
G4double py = p * sin(theta) * sin(phi);
G4double pz = p * cos(theta);
G4LorentzVector p4(px,py,pz,e);
return p4;
}
G4double G4PiMinusStopMaterial::RecoilEnergy(const G4double mass)
{
G4ThreeVector p(0.,0.,0.);
for (G4int i = 0; i< _momenta->entries(); i++)
{
p = p + (*_momenta)[i]->vect();
}
G4double pNucleus = p.mag();
G4double eNucleus = sqrt(pNucleus*pNucleus + mass*mass);
return eNucleus;
}