From f96b9366b5f67636393718b8faeb6b3c95c8ab3f Mon Sep 17 00:00:00 2001 From: sunwen Date: Thu, 1 Jun 2023 13:44:21 +0800 Subject: [PATCH] update config.h --- src/config/config.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/config/config.h b/src/config/config.h index f4228e5..99d2dff 100644 --- a/src/config/config.h +++ b/src/config/config.h @@ -40,7 +40,7 @@ namespace Recon static int senderTASSize = 2; static int senderElementSize = 18; //reflectParams.qualityCheck - static int qualityCheck = 1; + static bool qualityCheck = true; static double warningThreshold = 0.5; static double errorThreshold = 0.1; //reflectParams.dataPreparation @@ -89,7 +89,7 @@ namespace Recon namespace transParams { - static Aurora::Matrix gpuSelectionList; + static Aurora::Matrix gpuSelectionList = reconParams::gpuSelectionList; //transParams.dataSelection static int verbose = 1; static int saveRecon = 1; @@ -139,7 +139,7 @@ namespace Recon static double pulseLengthSamples = 0; static double pulseLengthRefSamples = 0; //transParams.rayTracing - static int bentReconstruction = 0; + static bool bentReconstruction = false; static int bresenham = 1; static int bentMethod = 1; static int bentTol = 1; @@ -150,6 +150,7 @@ namespace Recon static Aurora::Matrix muValues = Aurora::Matrix::fromRawData(new double[1]{100}, 1); static Aurora::Matrix betaValues = Aurora::Matrix::fromRawData(new double[1]{1}, 1); static bool runTransmissionReco = true; + static bool nonNeg = false; } }