![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
Corresponds to a Beta minus record in the ENSDF database. More...
#include <BetaMinusRecord.h>
Public Member Functions | |
BetaMinusRecord (list< string > cardArg, NormalizationRecord *norm, LevelRecord *lev, ParentRecord *parent, QValueRecord *qValRecord) | |
Constructor, constructs the object. | |
double | getEndPointEnergy () const |
Returns the endpoint energy. | |
double | getIntensityOfBetaDecayBranch () const |
Returns the intensity of this beta decay branch. | |
Protected Attributes | |
double | endPointEnergy |
The endpoint energy. | |
double | intensityOfBetaMinusDecayBranch |
The intensity of the beta decay branch. | |
Private Member Functions | |
void | processCard () |
Processes the cardArg string and retrieves information from it. Called by the constructor. |
Corresponds to a Beta minus record in the ENSDF database.
Definition at line 46 of file BetaMinusRecord.h.
BetaMinusRecord::BetaMinusRecord | ( | list< string > | cardArg, |
NormalizationRecord * | norm, | ||
LevelRecord * | lev, | ||
ParentRecord * | parent, | ||
QValueRecord * | qValRecord | ||
) |
Constructor, constructs the object.
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 BetaMinusRecord.cpp.
References processCard().
:BetaRecordWrapper(cardArg, lev, par, qValArg, norm) { processCard(); }