Calculate 12C*->3-alpha decay & compare alpha KE with exact microcanonical distribution
Example of use of KVGenPhaseSpace class, which uses TGenPhaseSpace to generate events according to microcanonical statistics. By default, 10**5 events are generated for the 3-alpha decay of a Carbon-12 nucleus with E*=50 MeV. A histogram is filled with the kinetic energy distribution of one of the alpha particles, which is then fitted using the exact microcanonical probability distribution for a classical gas of 3 equal-mass particles.
To execute this function, do
$ kaliveda kaliveda[0] .L KVGenPhaseSpace_example2.C+ kaliveda[1] example()
#include "KVNucleus.h"
#include "KVSimEvent.h"
#include "KVGenPhaseSpace.h"
#include "TH1F.h"
#include "TF1.h"
#include "TStyle.h"
double edist(double* x, double* par)
{
double E = x[0];
double k = par[2] / (par[2] - 1.);
if (E > 0 && E < par[1] / k) {
double w = par[0] * pow(E / pow(par[1], 3), 0.5);
w *= pow((1. - k * E / par[1]), (3.*par[2] - 8.) / 2.);
return w;
}
return 0.;
}
void example(double E0 = 50, int nevents = 100000)
{
CN.SetExcitEnergy(E0);
printf("Break-up channel is not allowed\n");
return;
}
Double_t wgt;
TH1F* h1 = new TH1F("h1", "Kinetic energy of alpha particle 3", 200, 0, etot * 2. / 3.);
h1->Sumw2();
while (nevents--) {
h1->Fill(n->
GetKE(), wgt);
}
h1->Draw();
TF1* EDis = new TF1("EDis", edist, 0., etot, 3);
EDis->SetNpx(500);
EDis->SetParLimits(0, 0, 1.e+08);
EDis->SetParLimits(1, 0, 2 * etot);
EDis->FixParameter(2, 3);
gStyle->SetOptFit(1);
h1->Fit(EDis, "EM");
}
Generate momenta for an event using microcanonical phase space sampling.
Bool_t SetBreakUpChannel(const KVNucleus &CN, KVEvent *e)
virtual Double_t Generate()
Double_t GetAvailableEnergy() const
Description of properties and kinematics of atomic nuclei.
void SetZandA(Int_t z, Int_t a)
Set atomic number and mass number.
Container class for simulated nuclei, KVSimNucleus.