From 1b07b043aac7701ba467da8228cc2ce9eb6526e5 Mon Sep 17 00:00:00 2001 From: "Ryan@WorkStation" Date: Fri, 1 Mar 2024 19:19:33 -0500 Subject: [PATCH] Number of Coupled channel for DT5730 is number of channel /2 --- ClassDigitizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClassDigitizer.cpp b/ClassDigitizer.cpp index 0c43cbc..287cf65 100644 --- a/ClassDigitizer.cpp +++ b/ClassDigitizer.cpp @@ -123,7 +123,7 @@ int Digitizer::OpenDigitizer(int boardID, int portID, bool program, bool verbose regChannelMask = pow(2, NumInputCh)-1; switch(BoardInfo.Model){ case CAEN_DGTZ_V1730: tick2ns = 2.0; NCoupledCh = NumInputCh/2; break; ///ns -> 500 MSamples/s - case CAEN_DGTZ_DT5730: tick2ns = 2.0; NCoupledCh = NumInputCh; break; ///ns -> 500 MSamples/s + case CAEN_DGTZ_DT5730: tick2ns = 2.0; NCoupledCh = NumInputCh/2; break; ///ns -> 500 MSamples/s case CAEN_DGTZ_V1725: tick2ns = 4.0; NCoupledCh = NumInputCh/2; break; ///ns -> 250 MSamples/s case CAEN_DGTZ_V1740: { NumInputCh = 64;