mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 18:17:59 +02:00
M3settings (#228)
* added temp m3 settings files * renames settings noise to trim * get threshold for M3 * some changes to compile on RH7 and in the server to load the default chip status register at startup * Updated mythen3DeectorServer_developer executable with correct initialization at startup Co-authored-by: Erik Frojdh <erik.frojdh@gmail.com> Co-authored-by: Anna Bergamaschi <anna.bergamaschi@psi.ch>
This commit is contained in:
@ -12,7 +12,9 @@ TEST_CASE("sls_detector_module default construction", "[support][new]") {
|
||||
CHECK(m.reg == -1);
|
||||
CHECK(m.iodelay == 0);
|
||||
CHECK(m.tau == 0);
|
||||
CHECK(m.eV == -1);
|
||||
CHECK(m.eV[0] == -1);
|
||||
CHECK(m.eV[1] == -1);
|
||||
CHECK(m.eV[2] == -1);
|
||||
CHECK(m.dacs == nullptr);
|
||||
CHECK(m.chanregs == nullptr);
|
||||
}
|
||||
@ -26,7 +28,9 @@ TEST_CASE("sls_detector_module from type", "[support]") {
|
||||
CHECK(m.reg == -1);
|
||||
CHECK(m.iodelay == 0);
|
||||
CHECK(m.tau == 0);
|
||||
CHECK(m.eV == -1);
|
||||
CHECK(m.eV[0] == -1);
|
||||
CHECK(m.eV[1] == -1);
|
||||
CHECK(m.eV[2] == -1);
|
||||
CHECK(m.dacs != nullptr);
|
||||
CHECK(m.chanregs != nullptr);
|
||||
}
|
||||
|
Reference in New Issue
Block a user