![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 #include "ParentRecord.h" 00002 00003 ParentRecord::ParentRecord(list<string> cardArg) 00004 :Record(cardArg) 00005 { 00006 processCard(); 00007 } 00008 00009 void ParentRecord::processCard() 00010 { 00011 halfLife = parseHalfLife(40, 49); 00012 } 00013 00014 double ParentRecord::getHalfLife() const 00015 { 00016 return halfLife; 00017 }