mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-06 01:50:40 +02:00
eiger passed
This commit is contained in:
parent
41a585a969
commit
4bcc1a24f0
@ -272,7 +272,7 @@ This document describes the differences between 6.0.0 and 5.2.0 releases.
|
|||||||
|
|
||||||
Gotthard2
|
Gotthard2
|
||||||
=========
|
=========
|
||||||
Compatible version : 27.05.2021 (development)
|
Compatible version : 27.05.2021 (v1.0)
|
||||||
|
|
||||||
Moench
|
Moench
|
||||||
======
|
======
|
||||||
|
@ -9247,7 +9247,7 @@ int get_readout_speed(int file_des) {
|
|||||||
int retval = -1;
|
int retval = -1;
|
||||||
LOG(logDEBUG1, ("Getting readout speed\n"));
|
LOG(logDEBUG1, ("Getting readout speed\n"));
|
||||||
|
|
||||||
#if !defined(JUNGFRAUD) && !defined(EIGER) && !defined(GOTTHARD2D)
|
#if !defined(JUNGFRAUD) && !defined(EIGERD) && !defined(GOTTHARD2D)
|
||||||
functionNotImplemented();
|
functionNotImplemented();
|
||||||
#else
|
#else
|
||||||
// get only
|
// get only
|
||||||
@ -9270,7 +9270,7 @@ int set_readout_speed(int file_des) {
|
|||||||
return printSocketReadError();
|
return printSocketReadError();
|
||||||
LOG(logDEBUG1, ("Setting readout speed : %u\n", arg));
|
LOG(logDEBUG1, ("Setting readout speed : %u\n", arg));
|
||||||
|
|
||||||
#if !defined(JUNGFRAUD) && !defined(EIGER) && !defined(GOTTHARD2D)
|
#if !defined(JUNGFRAUD) && !defined(EIGERD) && !defined(GOTTHARD2D)
|
||||||
functionNotImplemented();
|
functionNotImplemented();
|
||||||
#else
|
#else
|
||||||
// only set
|
// only set
|
||||||
|
@ -833,10 +833,6 @@ Result<std::string> Detector::getScanErrorMessage(Positions pos) const {
|
|||||||
// Network Configuration (Detector<->Receiver)
|
// Network Configuration (Detector<->Receiver)
|
||||||
|
|
||||||
Result<int> Detector::getNumberofUDPInterfaces(Positions pos) const {
|
Result<int> Detector::getNumberofUDPInterfaces(Positions pos) const {
|
||||||
if (getDetectorType().squash() != defs::JUNGFRAU) {
|
|
||||||
throw sls::RuntimeError(
|
|
||||||
"Cannot set number of udp interfaces for this detector.");
|
|
||||||
}
|
|
||||||
// also called by vetostream (for gotthard2)
|
// also called by vetostream (for gotthard2)
|
||||||
return pimpl->getNumberofUDPInterfaces(pos);
|
return pimpl->getNumberofUDPInterfaces(pos);
|
||||||
}
|
}
|
||||||
|
@ -576,11 +576,11 @@ void Module::setDynamicRange(int dr) {
|
|||||||
if (dr == 32) {
|
if (dr == 32) {
|
||||||
LOG(logINFO) << "Setting Clock to Quarter Speed to cope with "
|
LOG(logINFO) << "Setting Clock to Quarter Speed to cope with "
|
||||||
"Dynamic Range of 32";
|
"Dynamic Range of 32";
|
||||||
setClockDivider(RUN_CLOCK, 2);
|
setReadoutSpeed(defs::QUARTER_SPEED);
|
||||||
} else {
|
} else {
|
||||||
LOG(logINFO) << "Setting Clock to Full Speed for Dynamic Range of "
|
LOG(logINFO) << "Setting Clock to Full Speed for Dynamic Range of "
|
||||||
<< dr;
|
<< dr;
|
||||||
setClockDivider(RUN_CLOCK, 0);
|
setReadoutSpeed(defs::FULL_SPEED);
|
||||||
}
|
}
|
||||||
// EIGER only, update speed and rate correction when dr changes
|
// EIGER only, update speed and rate correction when dr changes
|
||||||
if (dr != prev_val) {
|
if (dr != prev_val) {
|
||||||
|
@ -488,23 +488,13 @@ TEST_CASE("activate", "[.cmd]") {
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
std::ostringstream oss;
|
std::ostringstream oss;
|
||||||
proxy.Call("activate", {"1", "nopadding"}, -1, PUT, oss);
|
proxy.Call("activate", {}, -1, GET, oss);
|
||||||
REQUIRE(oss.str() == "activate 1 nopadding\n");
|
REQUIRE(oss.str() == "activate 1\n");
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
std::ostringstream oss;
|
std::ostringstream oss;
|
||||||
proxy.Call("activate", {"0", "padding"}, -1, PUT, oss);
|
proxy.Call("activate", {"0"}, -1, PUT, oss);
|
||||||
REQUIRE(oss.str() == "activate 0 padding\n");
|
REQUIRE(oss.str() == "activate 0\n");
|
||||||
}
|
|
||||||
{
|
|
||||||
std::ostringstream oss;
|
|
||||||
proxy.Call("activate", {"0", "nopadding"}, -1, PUT, oss);
|
|
||||||
REQUIRE(oss.str() == "activate 0 nopadding\n");
|
|
||||||
}
|
|
||||||
{
|
|
||||||
std::ostringstream oss;
|
|
||||||
proxy.Call("activate", {"1", "padding"}, -1, PUT, oss);
|
|
||||||
REQUIRE(oss.str() == "activate 1 padding\n");
|
|
||||||
}
|
}
|
||||||
for (int i = 0; i != det.size(); ++i) {
|
for (int i = 0; i != det.size(); ++i) {
|
||||||
det.setActive(prev_val[i], {i});
|
det.setActive(prev_val[i], {i});
|
||||||
|
@ -308,12 +308,13 @@ TEST_CASE("rx_udpsocksize", "[.cmd][.rx]") {
|
|||||||
CmdProxy proxy(&det);
|
CmdProxy proxy(&det);
|
||||||
int64_t prev_val = det.getRxUDPSocketBufferSize().tsquash(
|
int64_t prev_val = det.getRxUDPSocketBufferSize().tsquash(
|
||||||
"Need same udp socket buffer size to test");
|
"Need same udp socket buffer size to test");
|
||||||
std::string s_new_val = std::to_string(prev_val - 1000);
|
std::string s_new_val = std::to_string(prev_val);
|
||||||
{
|
/*std::string s_new_val = std::to_string(prev_val - 1000);
|
||||||
|
{ Need permissions
|
||||||
std::ostringstream oss;
|
std::ostringstream oss;
|
||||||
proxy.Call("rx_udpsocksize", {s_new_val}, -1, PUT, oss);
|
proxy.Call("rx_udpsocksize", {s_new_val}, -1, PUT, oss);
|
||||||
REQUIRE(oss.str() >= "rx_udpsocksize " + s_new_val + "\n");
|
REQUIRE(oss.str() >= "rx_udpsocksize " + s_new_val + "\n");
|
||||||
}
|
}*/
|
||||||
{
|
{
|
||||||
std::ostringstream oss;
|
std::ostringstream oss;
|
||||||
proxy.Call("rx_udpsocksize", {}, -1, GET, oss);
|
proxy.Call("rx_udpsocksize", {}, -1, GET, oss);
|
||||||
|
@ -1772,6 +1772,9 @@ TEST_CASE("defaultdac", "[.cmd]") {
|
|||||||
REQUIRE_THROWS(proxy.Call("defaultdac", {"blabla"}, -1, PUT));
|
REQUIRE_THROWS(proxy.Call("defaultdac", {"blabla"}, -1, PUT));
|
||||||
auto daclist = det.getDacList();
|
auto daclist = det.getDacList();
|
||||||
for (auto it : daclist) {
|
for (auto it : daclist) {
|
||||||
|
if (it == defs::VTHRESHOLD) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
auto dacname = sls::ToString(it);
|
auto dacname = sls::ToString(it);
|
||||||
auto prev_val = det.getDefaultDac(it);
|
auto prev_val = det.getDefaultDac(it);
|
||||||
{
|
{
|
||||||
@ -1916,6 +1919,9 @@ TEST_CASE("blockingtrigger", "[.cmd]") {
|
|||||||
proxy.Call("blockingtrigger", {}, -1, PUT, oss);
|
proxy.Call("blockingtrigger", {}, -1, PUT, oss);
|
||||||
REQUIRE(oss.str() == "blockingtrigger successful\n");
|
REQUIRE(oss.str() == "blockingtrigger successful\n");
|
||||||
}
|
}
|
||||||
|
if (det.isVirtualDetectorServer().tsquash("inconsistent virtual detectors")) {
|
||||||
|
std::this_thread::sleep_for(std::chrono::seconds(2));
|
||||||
|
}
|
||||||
auto currentfnum =
|
auto currentfnum =
|
||||||
det.getNextFrameNumber().tsquash("inconsistent frame nr in test");
|
det.getNextFrameNumber().tsquash("inconsistent frame nr in test");
|
||||||
REQUIRE(nextframenumber + 1 == currentfnum);
|
REQUIRE(nextframenumber + 1 == currentfnum);
|
||||||
@ -2310,7 +2316,7 @@ TEST_CASE("udp_firstdst", "[.cmd]") {
|
|||||||
det.setFirstUDPDestination(prev_val[i], {i});
|
det.setFirstUDPDestination(prev_val[i], {i});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
REQUIRE_THROWS(proxy.Call("udp_numdst", {}, -1, GET));
|
REQUIRE_THROWS(proxy.Call("udp_firstdst", {}, -1, GET));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user