![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
Used to provide the rest of the ENSDF software with a simple way to deal with beta records without specializing to either beta+ or beta-. More...
#include <BetaRecordWrapper.h>
Public Member Functions | |
BetaRecordWrapper (list< string > cardArg, LevelRecord *myLevel, ParentRecord *myParent, QValueRecord *myQValue, NormalizationRecord *norm) | |
Constructor, construct the object. | |
virtual double | getEndPointEnergy () const =0 |
The endpoint energy of this beta decay. | |
virtual double | getIntensityOfBetaDecayBranch () const =0 |
The intensity of the beta decay branch. |
Used to provide the rest of the ENSDF software with a simple way to deal with beta records without specializing to either beta+ or beta-.
Definition at line 44 of file BetaRecordWrapper.h.
BetaRecordWrapper::BetaRecordWrapper | ( | list< string > | cardArg, |
LevelRecord * | myLevel, | ||
ParentRecord * | myParent, | ||
QValueRecord * | myQValue, | ||
NormalizationRecord * | norm | ||
) |
Constructor, construct the object.
cardArg | The The card string(s) corresponding to this record. |
myLevel | A pointer to the Level record corresponding to this record. |
myParent | A pointer to the Parent record corresponding to this record. |
myQValue | A pointer to the Q value record corresponding to this record. |
norm | A pointer to the Normalization record corresponding to this record. |
Definition at line 3 of file BetaRecordWrapper.cpp.
:LevelRecordChildrenWrapper(myLevel), ParentRecordChildrenWrapper(myParent), QValueRecordChildrenWrapper(myQValue), NormalizationRecordChildrenWrapper(norm), Record(cardArg) { //nothing to do here yet... }