Calculate 12C*->3-alpha decay & compare alpha KE with exact microcanonical distribution
Example of use of MicroStat::mdweight class, which can generate events according to the molecular dynamics ensemble i.e. fixed total energy and zero total momentum.
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 MicroStat_example.C+
kaliveda[1] example()
#include "KVNucleus.h"
#include "KVNucleusEvent.h"
#include "mdweight.h"
#include "TH1F.h"
#include "TF1.h"
#include "TStyle.h"
#include "TStopwatch.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)
{
TStopwatch timer;
CN.SetExcitEnergy(E0);
n = decay.AddParticle();
n = decay.AddParticle();
Double_t etot = E0 + decay.GetChannelQValue();
if (etot <= 0) {
printf("Break-up channel is not allowed\n");
return;
}
TH1F* h1 = new TH1F("h1", "Kinetic energy of alpha particle 3", 200, 0, etot * 2. / 3.);
h1->Sumw2();
while (nevents--) {
h1->Fill(event.GetParticle(3)->GetKE());
}
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");
timer.Print();
}
An event container for KVNucleus objects.
Description of properties and kinematics of atomic nuclei.
void SetZandA(Int_t z, Int_t a)
Set atomic number and mass number.
void GenerateEvent(KVEvent *partition, KVEvent *event)
Calculate molecular dynamics ensemble weights for events .
void resetGenerateEvent()
void initGenerateEvent(KVEvent *partition)
virtual void SetWeight(KVEvent *e, Double_t E)