From 7a9745e2dadae302ed7bc3ab4385c40e4882edee Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Mon, 3 Jun 2019 18:14:23 +0200 Subject: [PATCH] fixed typo in command, bsamples to dsamples --- slsDetectorSoftware/src/slsDetectorCommand.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/slsDetectorSoftware/src/slsDetectorCommand.cpp b/slsDetectorSoftware/src/slsDetectorCommand.cpp index 5ba75e345..78193c807 100755 --- a/slsDetectorSoftware/src/slsDetectorCommand.cpp +++ b/slsDetectorSoftware/src/slsDetectorCommand.cpp @@ -632,9 +632,9 @@ slsDetectorCommand::slsDetectorCommand(multiSlsDetector *det) { ++i; /*! \page timing - - bsamples [i] sets/gets number of digital samples expected from the ctb. Used in CHIP TEST BOARD and MOENCH only. \c Returns \c (long long int) + - dsamples [i] sets/gets number of digital samples expected from the ctb. Used in CHIP TEST BOARD and MOENCH only. \c Returns \c (long long int) */ - descrToFuncMap[i].m_pFuncName = "bsamples"; + descrToFuncMap[i].m_pFuncName = "dsamples"; descrToFuncMap[i].m_pFuncPtr = &slsDetectorCommand::cmdTimer; ++i; @@ -4468,7 +4468,7 @@ std::string slsDetectorCommand::cmdTimer(int narg, const char * const args[], in index = ANALOG_SAMPLES; else if (cmd == "asamples") index = ANALOG_SAMPLES; - else if (cmd == "bsamples") + else if (cmd == "dsamples") index = DIGITAL_SAMPLES; else if (cmd == "storagecells") index = STORAGE_CELL_NUMBER;