![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
Represents a single Normalization record (includeing continuation records) in the ENSDF database. More...
#include <NormalizationRecord.h>
Public Member Functions | |
NormalizationRecord (list< string > cardArg, ParentRecord *parent) | |
Constructor, constructs the object. | |
double | getNT () const |
Get the NT information. | |
double | getNR () const |
Get the NR information. | |
double | getBetaMultiplier () const |
Get the beta multiplier. | |
Protected Attributes | |
double | NT |
The NT information in the NormalizationRecord. | |
double | NR |
The NR information in the NormalizationRecord. | |
double | betaMultiplier |
The Beta multiplier in the Normalization record. | |
Private Member Functions | |
void | processCard () |
Called by the constructor to initialize the protected members. |
Represents a single Normalization record (includeing continuation records) in the ENSDF database.
Definition at line 39 of file NormalizationRecord.h.
NormalizationRecord::NormalizationRecord | ( | list< string > | cardArg, |
ParentRecord * | parent | ||
) |
Constructor, constructs the object.
cardArg | The card string(s) corresponding to this record. |
parent | A pointer to the Parent record corresponding to this record. |
Definition at line 3 of file NormalizationRecord.cpp.
References processCard().
:Record(cardArg), ParentRecordChildrenWrapper(parentArg) { processCard(); }
double NormalizationRecord::getBetaMultiplier | ( | ) | const |
Get the beta multiplier.
Definition at line 9 of file NormalizationRecord.cpp.
References betaMultiplier.
Referenced by BetaPlusRecord::processCard(), BetaMinusRecord::processCard(), and Record_TEST::testNormalizationRecord().
{ return betaMultiplier; }
double NormalizationRecord::getNR | ( | ) | const |
Get the NR information.
Definition at line 26 of file NormalizationRecord.cpp.
References NR.
{ return NR; }
double NormalizationRecord::getNT | ( | ) | const |
Get the NT information.
Definition at line 21 of file NormalizationRecord.cpp.
References NT.
{ return NT; }