![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
Corresponds to a single IdentificationRecord in the ENSDF database (including continuation records). More...
#include <IdentificationRecord.h>
Public Member Functions | |
IdentificationRecord (list< string > cardArg) | |
Constructor, constructs the object. | |
string | getDSID () const |
Get dataset information. | |
string | getReferences () const |
Get reference information. | |
string | getDate () const |
Get date. | |
string | getPublicationInformation () const |
Get publication information. | |
Protected Attributes | |
string | DSID |
The DSID information. | |
string | references |
The reference information. | |
string | publicationInformation |
The publication information. | |
string | date |
The date information. | |
Private Member Functions | |
void | processCard () |
Called by the constructor to process the card information and initalize DSID, references, publicationInformation and date. |
Corresponds to a single IdentificationRecord in the ENSDF database (including continuation records).
Definition at line 40 of file IdentificationRecord.h.
IdentificationRecord::IdentificationRecord | ( | list< string > | cardArg | ) |
Constructor, constructs the object.
cardArg | The card string(s) corresponding to this record. |
Definition at line 3 of file IdentificationRecord.cpp.
References processCard().
:Record(cardArg) { processCard(); }
string IdentificationRecord::getDate | ( | ) | const |
Get date.
Definition at line 18 of file IdentificationRecord.cpp.
References date.
{ return date; }
string IdentificationRecord::getDSID | ( | ) | const |
Get dataset information.
Definition at line 23 of file IdentificationRecord.cpp.
References DSID.
{ return DSID; }
string IdentificationRecord::getPublicationInformation | ( | ) | const |
Get publication information.
Definition at line 28 of file IdentificationRecord.cpp.
References publicationInformation.
{ return publicationInformation; }
string IdentificationRecord::getReferences | ( | ) | const |
Get reference information.
Definition at line 33 of file IdentificationRecord.cpp.
References references.
{ return references; }