![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
Corresponds to a Beta plus record in the ENSDF database, this may include electron capture. More...
#include <BetaPlusRecord.h>
Public Member Functions | |
BetaPlusRecord (list< string > cardArg, NormalizationRecord *norm, LevelRecord *lev, ParentRecord *parent, QValueRecord *qValRecord) | |
Constructor. | |
double | getEndPointEnergy () const |
Returns the endpoint energy of this beta plus decay. | |
double | getIntensityOfBetaDecayBranch () const |
Returns the intensity of the beta decay branch. | |
double | getIntensityOfElectronCaptureBranch () const |
Returns the intensity of the electron capture branch. | |
Protected Attributes | |
double | intensityOfBetaPlusDecayBranch |
The intensity of the beta plus decay branch. | |
double | intensityOfElectronCaptureBranch |
The intensity of the electron capture branch. | |
double | endPointEnergy |
The endpoint energy. | |
Private Member Functions | |
void | processCard () |
Called by the constructor to process the record. |
Corresponds to a Beta plus record in the ENSDF database, this may include electron capture.
Definition at line 45 of file BetaPlusRecord.h.
BetaPlusRecord::BetaPlusRecord | ( | list< string > | cardArg, |
NormalizationRecord * | norm, | ||
LevelRecord * | lev, | ||
ParentRecord * | parent, | ||
QValueRecord * | qValRecord | ||
) |
Constructor.
cardArg | The card string(s) corresponding to this record. |
norm | A pointer to the Normalization record corresponding to this record. |
lev | A pointer to the Level record corresponding to this record. |
parent | A pointer to the Parent record corresponding to this record. |
qValRecord | A pointer to the Q value record corresponding to this record. |
Definition at line 3 of file BetaPlusRecord.cpp.
References processCard().
:BetaRecordWrapper(cardArg, lev, par, qValArg, norm) { processCard(); }