DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
MezzCommandBuilder.hpp
Go to the documentation of this file.
1#pragma once
2#include <string>
3#include <fmt/format.h>
4
6
8{
9public:
10 static std::string build_bias_cmd(int afe, int mv)
11 {
12 return fmt::format("WR BIASSET AFE {} V {}", afe, mv);
13 }
14
15 static std::string build_vgain_cmd(int afe, int vgain)
16 {
17 return fmt::format("WR AFE {} VGAIN V {}", afe, vgain);
18 }
19
20};
21
22}
static std::string build_bias_cmd(int afe, int mv)
static std::string build_vgain_cmd(int afe, int vgain)