By default, 10**5 events are generated for the decay of a Carbon-12 nucleus with E*=50 MeV.
Histograms are filled with the kinetic energy distributions of the three particles, which are then fitted using the exact microcanonical probability distribution for a classical gas of 3 unequal-mass particles.
#include "KVNucleus.h"
#include "KVNucleusEvent.h"
#include "mdweight.h"
#include "TH1F.h"
#include "TF1.h"
#include "TStyle.h"
#include "TStopwatch.h"
#include "TCanvas.h"
double edist(double* x, double* par)
{
double E = x[0];
if (E > 0 && E * par[3] < par[1]) {
double w = par[0] * pow(E / pow(par[1], 3), 0.5);
w *= pow((1. - par[3] * E / par[1]), (3.*par[2] - 8.) / 2.);
return w;
}
return 0.;
}
TF1* EDis = nullptr;
void FitEDist(TH1F* histo, Double_t etot, Int_t Npart, Double_t Mtot, Double_t Mpart)
{
if (!EDis) EDis = new TF1("EDis", edist, 0., etot, 4);
EDis->SetNpx(500);
EDis->SetParLimits(0, 0, 1.e+08);
EDis->SetParLimits(1, 0, 2 * etot);
EDis->FixParameter(2, Npart);
EDis->FixParameter(3, Mtot / (Mtot - Mpart));
gStyle->SetOptFit(1);
histo->Fit(EDis, "EM");
}
void example(double E0 = 50, int nevents = 100000)
{
TStopwatch timer;
CN.SetExcitEnergy(E0);
n = decay.AddNucleus();
n = decay.AddNucleus();
Double_t etot = E0 + decay.GetChannelQValue();
Double_t total_mass = decay.GetSum("GetMass");
if (etot <= 0) {
printf("Break-up channel is not allowed\n");
return;
}
std::cout << "Edisp = " << etot << " MeV" << std::endl;
TH1F* h;
for (auto& n : decay) {
Double_t kappa = total_mass / (total_mass - n.
GetMass());
std::cout << n.
GetSymbol() <<
" : max KE = " << 1. / kappa <<
" * " << etot <<
" MeV" << std::endl;
std::cout << n.
GetSymbol() <<
" : m/M = " << n.
GetMass() / total_mass <<
" k = " << kappa << std::endl;
h->Sumw2();
}
while (nevents--) {
}
TIter it(&histos);
while ((h = (TH1F*)it())) {
new TCanvas;
FitEDist(h, etot, decay.GetMult(), total_mass, part.GetMass());
}
timer.Print();
}
Extended version of ROOT THashList.
An event container for KVNucleus objects.
Description of properties and kinematics of atomic nuclei.
const Char_t * GetSymbol(Option_t *opt="") const
void SetZandA(Int_t z, Int_t a)
Set atomic number and mass number.
virtual void Add(TObject *obj)
virtual TObject * FindObject(const char *name) const
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)