![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00010 #include "Nukleid.h" 00011 #include "InterestingDecay.h" 00012 #include "DoubleMath.h" 00013 00014 #ifndef SSTREAM 00015 #define SSTREAM //!<Inclusion guard 00016 #include <sstream> 00017 #endif 00018 00019 #ifndef INTERESTINGDECAYISOMER 00020 #define INTERESTINGDECAYISOMER //!<Inclusion guard 00021 00024 class InterestingDecayIsomer: public InterestingDecay 00025 { 00026 public: 00027 InterestingDecayIsomer(Nukleid nukleidToSet, 00028 double halfLifeToSet, 00029 double energyToSet 00030 ); 00031 double getHalfLife() const; 00032 double getEnergy() const; 00033 string toString() const; 00034 00035 bool operator==(const InterestingDecayIsomer &other 00036 ) const; 00037 00038 bool operator<(const InterestingDecayIsomer &other 00039 ) const; 00040 00041 protected: 00042 double myHalfLife; 00043 double myEnergy; 00044 }; 00045 #endif