mirror of
https://github.com/gwm17/Mask.git
synced 2024-11-13 05:58:50 -05:00
58 lines
1.0 KiB
C++
58 lines
1.0 KiB
C++
#ifndef RXNTYPE_H
|
|
#define RXNTYPE_H
|
|
|
|
#include <string>
|
|
|
|
namespace Mask {
|
|
|
|
enum class RxnType
|
|
{
|
|
PureDecay=0,
|
|
OneStepRxn=1,
|
|
TwoStepRxn=2,
|
|
ThreeStepRxn=3,
|
|
None=4
|
|
};
|
|
|
|
static RxnType GetRxnTypeFromString(const std::string& type_str)
|
|
{
|
|
if (type_str == "PureDecay")
|
|
return RxnType::PureDecay;
|
|
else if (type_str == "OneStepRxn")
|
|
return RxnType::OneStepRxn;
|
|
else if (type_str == "TwoStepRxn")
|
|
return RxnType::TwoStepRxn;
|
|
else if (type_str == "ThreeStepRxn")
|
|
return RxnType::ThreeStepRxn;
|
|
else
|
|
return RxnType::None;
|
|
}
|
|
|
|
static std::string GetStringFromRxnType(RxnType type)
|
|
{
|
|
switch(type)
|
|
{
|
|
case RxnType::PureDecay: return "PureDecay";
|
|
case RxnType::OneStepRxn: return "OneStepRxn";
|
|
case RxnType::TwoStepRxn: return "TwoStepRxn";
|
|
case RxnType::ThreeStepRxn: return "ThreeStepRxn";
|
|
}
|
|
|
|
return "None";
|
|
}
|
|
|
|
static RxnType GetRxnTypeFromInt(uint32_t value)
|
|
{
|
|
return static_cast<RxnType>(value);
|
|
}
|
|
|
|
static uint32_t GetIntFromRxnType(RxnType type)
|
|
{
|
|
return static_cast<uint32_t>(type);
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif |