ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
Public Member Functions
AlphaRecord Class Reference

Representing a single Alpha record in the ENSDF database (including continuation records). More...

#include <AlphaRecord.h>

Inheritance diagram for AlphaRecord:
Record ParentRecordChildrenWrapper QValueRecordChildrenWrapper LevelRecordChildrenWrapper NormalizationRecordChildrenWrapper Child< ParentRecord > Child< QValueRecord > Child< LevelRecord > Child< NormalizationRecord >

List of all members.

Public Member Functions

 AlphaRecord (list< string > cardArg, NormalizationRecord *myNormalizationRecord, LevelRecord *level, ParentRecord *myParent, QValueRecord *qValRecord)
 Constructor, called when the object is constructed by the Dataset.

Detailed Description

Representing a single Alpha record in the ENSDF database (including continuation records).

Note:
Currently only a dummy class.
Author:
Rikard Lundmark

Definition at line 46 of file AlphaRecord.h.


Constructor & Destructor Documentation

AlphaRecord::AlphaRecord ( list< string >  cardArg,
NormalizationRecord myNormalizationRecord,
LevelRecord level,
ParentRecord myParent,
QValueRecord qValRecord 
)

Constructor, called when the object is constructed by the Dataset.

Parameters:
cardArgThe card string(s) corresponding to this record.
myNormalizationRecordA pointer to the Normalization record corresponding to this record.
levelA pointer to the Level record corresponding to this record.
myParentA pointer to the Parent record corresponding to this record.
qValRecordA pointer to the Q value record corresponding to this record.

Definition at line 3 of file AlphaRecord.cpp.

  :Record(cardArg), ParentRecordChildrenWrapper(myParent), QValueRecordChildrenWrapper(qValArg), LevelRecordChildrenWrapper(levelArg), NormalizationRecordChildrenWrapper(myNormalization)
{
  //No handling of this record implemented, this is a dummy object.

}

The documentation for this class was generated from the following files:
 All Classes Files Functions Variables Enumerations Enumerator Defines

Back to the main page of the Precalibrated Ion Beam Identification Detector project

Created by Rikard Lundmark