update config.h

This commit is contained in:
sunwen
2023-06-01 13:44:21 +08:00
parent c61a0ce09e
commit f96b9366b5

View File

@@ -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;
}
}