![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
Corresponds to a single QValueRecord in the ENSDF database (including continuation records). More...
#include <QValueRecord.h>
Public Member Functions | |
QValueRecord (list< string > cardArg) | |
Constructor. | |
bool | operator== (const QValueRecord &other) const |
Comparision operator. | |
double | getQValue () const |
Get the Q value. | |
Protected Attributes | |
double | QValue |
Contains the energy in keV alvailible for beta decay of the ground state. | |
Private Member Functions | |
void | processCard () |
Called by the constructor to initialize the protected members. |
Corresponds to a single QValueRecord in the ENSDF database (including continuation records).
Definition at line 37 of file QValueRecord.h.
QValueRecord::QValueRecord | ( | list< string > | cardArg | ) |
Constructor.
cardArg | The card string(s) corresponding to this record. |
Definition at line 5 of file QValueRecord.cpp.
References processCard().
:Record(cardArg) { processCard(); }
double QValueRecord::getQValue | ( | ) | const |
Get the Q value.
Definition at line 21 of file QValueRecord.cpp.
References QValue.
{ return QValue; }
bool QValueRecord::operator== | ( | const QValueRecord & | other | ) | const |
Comparision operator.
other | The object to compare. |
Definition at line 16 of file QValueRecord.cpp.
References Record::getNukleid(), and QValue.
{ return ((getNukleid()==other.getNukleid())&&(QValue==other.QValue)); }