mirror of
https://github.com/gwm17/Mask.git
synced 2025-04-05 00:08:49 -04:00
111 lines
2.9 KiB
C++
111 lines
2.9 KiB
C++
#include "ThreeStepSystem.h"
|
|
#include "KinematicsExceptions.h"
|
|
|
|
namespace Mask {
|
|
|
|
ThreeStepSystem::ThreeStepSystem() :
|
|
ReactionSystem()
|
|
{
|
|
}
|
|
|
|
ThreeStepSystem::ThreeStepSystem(std::vector<int>& z, std::vector<int>& a) :
|
|
ReactionSystem()
|
|
{
|
|
SetNuclei(z, a);
|
|
}
|
|
|
|
ThreeStepSystem::~ThreeStepSystem() {
|
|
|
|
}
|
|
|
|
bool ThreeStepSystem::SetNuclei(std::vector<int>&z, std::vector<int>& a) {
|
|
if(z.size() != a.size() || z.size() < 5) {
|
|
return false;
|
|
}
|
|
int zr = z[0] + z[1] - z[2];
|
|
int zb2 = zr - z[3];
|
|
int ar = a[0] + a[1] - a[2];
|
|
int ab2 = ar - a[3];
|
|
|
|
step1.SetNuclei(z[0], a[0], z[1], a[1], z[2], a[2]);
|
|
step2.SetNuclei(zr, ar, 0, 0, z[3], a[3]);
|
|
step3.SetNuclei(zb2, ab2, 0, 0, z[4], a[4]);
|
|
SetSystemEquation();
|
|
return true;
|
|
}
|
|
|
|
void ThreeStepSystem::LinkTarget() {
|
|
step1.SetLayeredTarget(&target);
|
|
step2.SetLayeredTarget(&target);
|
|
step3.SetLayeredTarget(&target);
|
|
|
|
rxnLayer = target.FindLayerContaining(step1.GetTarget().GetZ(), step1.GetTarget().GetA());
|
|
if(rxnLayer != -1) {
|
|
step1.SetRxnLayer(rxnLayer);
|
|
step2.SetRxnLayer(rxnLayer);
|
|
step3.SetRxnLayer(rxnLayer);
|
|
target_set_flag = true;
|
|
} else {
|
|
throw ReactionLayerException();
|
|
}
|
|
}
|
|
|
|
void ThreeStepSystem::SetSystemEquation() {
|
|
m_sys_equation = step1.GetTarget().GetIsotopicSymbol();
|
|
m_sys_equation += "(";
|
|
m_sys_equation += step1.GetProjectile().GetIsotopicSymbol();
|
|
m_sys_equation += ", ";
|
|
m_sys_equation += step1.GetEjectile().GetIsotopicSymbol();
|
|
m_sys_equation += ")";
|
|
m_sys_equation += step1.GetResidual().GetIsotopicSymbol();
|
|
m_sys_equation += "-> ";
|
|
m_sys_equation += step2.GetEjectile().GetIsotopicSymbol();
|
|
m_sys_equation += " + ";
|
|
m_sys_equation += step2.GetResidual().GetIsotopicSymbol();
|
|
m_sys_equation += "-> ";
|
|
m_sys_equation += step3.GetEjectile().GetIsotopicSymbol();
|
|
m_sys_equation += " + ";
|
|
m_sys_equation += step3.GetResidual().GetIsotopicSymbol();
|
|
}
|
|
|
|
void ThreeStepSystem::RunSystem() {
|
|
if(!gen_set_flag) return;
|
|
|
|
//Link up the target if it hasn't been done yet
|
|
if(!target_set_flag) {
|
|
LinkTarget();
|
|
}
|
|
|
|
//Sample parameters
|
|
double bke = generator->Gaus(m_beamDist.first, m_beamDist.second);
|
|
double rxnTheta = acos(generator->Uniform(cos(m_theta1Range.first), cos(m_theta1Range.second)));
|
|
double rxnPhi = 0;
|
|
double decay1Theta = acos(generator->Uniform(-1, 1));
|
|
double decay1Phi = generator->Uniform(0, M_PI*2.0);
|
|
double decay2Theta = acos(generator->Uniform(-1,1));
|
|
double decay2Phi = generator->Uniform(0, M_PI*2.0);
|
|
double residEx = generator->Gaus(m_exDist.first, m_exDist.second);
|
|
|
|
step1.SetBeamKE(bke);
|
|
step1.SetPolarRxnAngle(rxnTheta);
|
|
step1.SetAzimRxnAngle(rxnPhi);
|
|
step1.SetExcitation(residEx);
|
|
|
|
step2.SetPolarRxnAngle(decay1Theta);
|
|
step2.SetAzimRxnAngle(decay1Phi);
|
|
|
|
step3.SetPolarRxnAngle(decay2Theta);
|
|
step3.SetAzimRxnAngle(decay2Phi);
|
|
|
|
step1.Calculate();
|
|
|
|
step2.SetTarget(step1.GetResidual());
|
|
step2.Calculate();
|
|
|
|
step3.SetTarget(step2.GetResidual());
|
|
step3.TurnOnResidualEloss();
|
|
step3.Calculate();
|
|
|
|
}
|
|
|
|
}; |