mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
FairMQ: Revert regression introduced by f1513f5169d335c17ccdfdb27f0f0c4edbeb8b65
This commit is contained in:
parent
e3cb1dd9e5
commit
896a8d6b7f
|
@ -13,7 +13,7 @@ using namespace std;
|
||||||
|
|
||||||
const std::unordered_map<std::string, PluginServices::DeviceState> PluginServices::fkDeviceStateStrMap = {
|
const std::unordered_map<std::string, PluginServices::DeviceState> PluginServices::fkDeviceStateStrMap = {
|
||||||
{"OK", DeviceState::Ok},
|
{"OK", DeviceState::Ok},
|
||||||
{"Error", DeviceState::Error},
|
{"ERROR", DeviceState::Error},
|
||||||
{"IDLE", DeviceState::Idle},
|
{"IDLE", DeviceState::Idle},
|
||||||
{"INITIALIZING DEVICE", DeviceState::InitializingDevice},
|
{"INITIALIZING DEVICE", DeviceState::InitializingDevice},
|
||||||
{"DEVICE READY", DeviceState::DeviceReady},
|
{"DEVICE READY", DeviceState::DeviceReady},
|
||||||
|
@ -27,7 +27,7 @@ const std::unordered_map<std::string, PluginServices::DeviceState> PluginService
|
||||||
};
|
};
|
||||||
const std::unordered_map<PluginServices::DeviceState, std::string, tools::HashEnum<PluginServices::DeviceState>> PluginServices::fkStrDeviceStateMap = {
|
const std::unordered_map<PluginServices::DeviceState, std::string, tools::HashEnum<PluginServices::DeviceState>> PluginServices::fkStrDeviceStateMap = {
|
||||||
{DeviceState::Ok, "OK"},
|
{DeviceState::Ok, "OK"},
|
||||||
{DeviceState::Error, "Error"},
|
{DeviceState::Error, "ERROR"},
|
||||||
{DeviceState::Idle, "IDLE"},
|
{DeviceState::Idle, "IDLE"},
|
||||||
{DeviceState::InitializingDevice, "INITIALIZING DEVICE"},
|
{DeviceState::InitializingDevice, "INITIALIZING DEVICE"},
|
||||||
{DeviceState::DeviceReady, "DEVICE READY"},
|
{DeviceState::DeviceReady, "DEVICE READY"},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user