GRSISort "v4.0.0.5"
An extension of the ROOT analysis Framework
Loading...
Searching...
No Matches
TBetaDecay.cxx
Go to the documentation of this file.
1#include "TBetaDecay.h"
2
3TBetaDecay::TBetaDecay(TNucleus* parent) : fParent(parent)
4{
5}
6
7TBetaDecay::TBetaDecay(char* name) : fParentAllocated(true), fParent(new TNucleus(name))
8{
9}
10
11TBetaDecay::TBetaDecay(Int_t Z, Int_t N) : fParentAllocated(true), fParent(new TNucleus(Z, N))
12{
13}
14
16{
18 delete fParent;
19 }
20}
TBetaDecay()=default
Bool_t fParentAllocated
true if TNucleus was instantiated in TBetaDecay
Definition TBetaDecay.h:40
TNucleus * fParent
The parent nucleus beta decaying.
Definition TBetaDecay.h:41