2020-11-16 13:38:39 -05:00
|
|
|
#ifndef THREESTEPSYSTEM_H
|
|
|
|
#define THREESTEPSYSTEM_H
|
|
|
|
|
|
|
|
#include "ReactionSystem.h"
|
2021-08-24 11:55:32 -04:00
|
|
|
#include "AngularDistribution.h"
|
2020-11-16 13:38:39 -05:00
|
|
|
|
2020-12-11 16:56:27 -05:00
|
|
|
namespace Mask {
|
|
|
|
|
2021-09-03 17:03:41 -04:00
|
|
|
class ThreeStepSystem : public ReactionSystem {
|
|
|
|
public:
|
|
|
|
ThreeStepSystem();
|
|
|
|
ThreeStepSystem(std::vector<int>& z, std::vector<int>& a);
|
|
|
|
~ThreeStepSystem();
|
|
|
|
bool SetNuclei(std::vector<int>& z, std::vector<int>& a) override;
|
|
|
|
void RunSystem() override;
|
|
|
|
|
|
|
|
inline void SetDecay1Distribution(const std::string& filename) { decay1dist.ReadDistributionFile(filename); };
|
|
|
|
inline void SetDecay2Distribution(const std::string& filename) { decay2dist.ReadDistributionFile(filename); };
|
|
|
|
|
|
|
|
inline void SetReactionThetaType(int type) { step1.SetEjectileThetaType(type); };
|
|
|
|
inline const Nucleus& GetTarget() const { return step1.GetTarget(); };
|
|
|
|
inline const Nucleus& GetProjectile() const { return step1.GetProjectile(); };
|
|
|
|
inline const Nucleus& GetEjectile() const { return step1.GetEjectile(); };
|
|
|
|
inline const Nucleus& GetResidual() const { return step1.GetResidual(); };
|
|
|
|
inline const Nucleus& GetBreakup1() const { return step2.GetEjectile(); };
|
|
|
|
inline const Nucleus& GetBreakup2() const { return step2.GetResidual(); };
|
|
|
|
inline const Nucleus& GetBreakup3() const { return step3.GetEjectile(); };
|
|
|
|
inline const Nucleus& GetBreakup4() const { return step3.GetResidual(); };
|
|
|
|
|
|
|
|
inline int GetDecay1AngularMomentum() { return decay1dist.GetL(); };
|
|
|
|
inline int GetDecay2AngularMomentum(){ return decay2dist.GetL(); };
|
|
|
|
inline double GetDecay1BranchingRatio() { return decay1dist.GetBranchingRatio(); };
|
|
|
|
inline double GetDecay2BranchingRatio(){ return decay2dist.GetBranchingRatio(); };
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void LinkTarget() override;
|
|
|
|
void SetSystemEquation() override;
|
|
|
|
|
|
|
|
std::uniform_real_distribution<double> m_phi2Range;
|
|
|
|
|
|
|
|
Reaction step1, step2, step3;
|
|
|
|
|
|
|
|
AngularDistribution decay1dist, decay2dist;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2020-12-11 16:56:27 -05:00
|
|
|
|
2020-11-16 13:38:39 -05:00
|
|
|
#endif
|