Jungfrautrigger (#516)

* jungfrau trigger added
* added blocking trigger
This commit is contained in:
Dhanya Thattil
2022-08-16 09:41:47 +02:00
committed by GitHub
parent 1bc4994be6
commit 01696ca89b
11 changed files with 89 additions and 58 deletions

View File

@ -1402,12 +1402,12 @@ std::string CmdProxy::Trigger(int action) {
os << cmd << ' ';
if (action == defs::HELP_ACTION) {
if (cmd == "trigger") {
os << "\n\t[Eiger][Mythen3] Sends software trigger signal to "
"detector";
os << "\n\t[Eiger][Mythen3][Jungfrau] Sends software trigger "
"signal to detector";
} else if (cmd == "blockingtrigger") {
os << "\n\t[Eiger] Sends software trigger signal to detector and "
"blocks till "
"the frames are sent out for that trigger.";
os << "\n\t[Eiger][Jungfrau] Sends software trigger signal to "
"detector and blocks till the frames are sent out for that "
"trigger.";
} else {
throw RuntimeError("unknown command " + cmd);
}