6 #include "KVSimEvent.h"
7 #include "KVSimNucleus.h"
94 CNucleus CN(toDecay.
GetZ(), toDecay.
GetA());
117 catch (std::exception& e) {
118 Info(
"DecaySingleNucleus",
"Caught std::exception: %s", e.what());
119 Info(
"DecaySingleNucleus",
"While decaying: Z=%d A=%d E*=%g S=%g", toDecay.
GetZ(), toDecay.
GetA(), toDecay.
GetExcitEnergy(), toDecay.
GetAngMom().Mag());
124 Info(
"DecaySingleNucleus",
"Caught unknown exception");
125 Info(
"DecaySingleNucleus",
"While decaying: Z=%d A=%d E*=%g S=%g", toDecay.
GetZ(), toDecay.
GetA(), toDecay.
GetExcitEnergy(), toDecay.
GetAngMom().Mag());
133 Info(
"DecaySingleNucleus",
"Bad Gemini decay (CNucleus::abortEvent=true)");
134 Info(
"DecaySingleNucleus",
"While decaying: Z=%d A=%d E*=%g S=%g", toDecay.
GetZ(), toDecay.
GetA(), toDecay.
GetExcitEnergy(), toDecay.
GetAngMom().Mag());
138 CNucleus* nuc = CN.getProducts(0);
147 float* v = nuc->getVelocityVector();
150 nuc = CN.getProducts();
215 if (branchname ==
"") branchname =
"gemini";
220 decayProducts->
Clear();
224 catch (std::exception& e) {
228 std::cout <<
"\xd" <<
"Gemini++ processing, " << nDecays <<
" decays left ..." << std::flush;
230 std::cout << std::endl;
244 if (z < 19 || z > 111) {
245 Error(
"GetMaxSpinWithFissionBarrier",
"Only use for 19<=Z<=111");
248 float amin = 1.2 * z + 0.01 * pow(z, 2);
249 float amax = 5.8 * z - 0.024 * pow(z, 2);
251 if (a < amin || a > amax) {
252 Error(
"GetMaxSpinWithFissionBarrier",
"Only valid for Z=%d with %d<=A<=%d",
253 z, (
int)amin, (
int)amax);
256 return CYrast::instance()->getJmaxSierk(z, a);
267 return CYrast::instance()->getBarrierFissionRLDM(z, a, J);
278 return CYrast::instance()->getBarrierFissionSierk(0.);
Base class for KaliVeda framework.
void Clear(Option_t *opt="")
static void MakeEventBranch(TTree *tree, const TString &branchname, T &event, Int_t bufsize=10000000)
void FillTreeWithEvents(KVSimNucleus &, bool, Int_t, TTree *, TString branchname="")
void DecayEvent(const KVSimEvent *, KVSimEvent *, bool=true)
Float_t GetMaxSpinWithFissionBarrier(int, int)
void DecaySingleNucleus(KVSimNucleus &, KVSimEvent *, bool=true)
Float_t GetFissionBarrierSierk(int z, int a)
Return Sierk fission barrier for zero angular momentum.
Float_t GetFissionBarrierRLDM(int z, int a, float J)
Return Rotating Liquid Drop Model fission barrier for given spin in hbar units.
virtual ~KVGemini()
Destructor.
Description of properties and kinematics of atomic nuclei.
void SetExcitEnergy(Double_t e)
Double_t GetExcitEnergy() const
void SetZ(Int_t z, Char_t mt=-1)
Int_t GetZ() const
Return the number of proton / atomic number.
void SetVelocity(const TVector3 &)
Set velocity of particle (in cm/ns units)
void SetParameter(const Char_t *name, ValType value) const
TVector3 GetVelocity() const
returns velocity vector in cm/ns units
Container class for simulated nuclei, KVSimNucleus.
Nucleus in a simulated event.
const TVector3 * GetAngMom() const
Wrapper class for iterating over nuclei in KVSimEvent accessed through base pointer or reference.
Exception(s) thrown by KVGemini.