ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
NormalizationRecord.cpp
Go to the documentation of this file.
00001 #include "NormalizationRecord.h"
00002 
00003 NormalizationRecord::NormalizationRecord(list<string> cardArg, ParentRecord* parentArg)
00004   :Record(cardArg), ParentRecordChildrenWrapper(parentArg)
00005 {
00006   processCard();
00007 }
00008 
00009 double NormalizationRecord::getBetaMultiplier() const
00010 {
00011   return betaMultiplier;
00012 }
00013 
00014 void NormalizationRecord::processCard()
00015 {
00016   betaMultiplier = cardToDouble(42, 49);
00017   NT = cardToDouble(22, 29);
00018   NR = cardToDouble(10,19);
00019 }
00020 
00021 double NormalizationRecord::getNT() const
00022 {
00023   return NT;
00024 }
00025 
00026 double NormalizationRecord::getNR() const
00027 {
00028   return NR;
00029 }
 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