Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ enum Type : char {
ZS = 2, ///< final Zero Suppression (can be ILBZS, DLBZS)
IDC = 3, ///< Integrated Digitial Currents, with priority bit to end up in separate buffer
SAC = 4, ///< Sampled Analogue Currents from the current monitor
CMV = 5, ///< Common mode values
};

const std::unordered_map<Type, std::string_view> TypeNameMap{
Expand All @@ -36,6 +37,7 @@ const std::unordered_map<Type, std::string_view> TypeNameMap{
{Type::ZS, "ZS"},
{Type::IDC, "IDC"},
{Type::SAC, "SAC"},
{Type::CMV, "CMV"},
};

} // namespace o2::tpc::raw_data_types
Expand Down