Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef FORWARDERRORMESSAGES_H_
00009 #define FORWARDERRORMESSAGES_H_
00010
00011 const static char XYPlaneMustBeSquareKernel[] = "Kernel must have the same X and Y dimension (Nx, Ny, Nz, M, Nalpha) = (%1d x %1d x %1d x %1d x %1d)";
00012 const static char XYPlaneMustBeSquareModel[] = "Model must have dimensions (Nx, Ny, Nz, Nalpha) = (%1d x %1d x %1d x %1d) based on the kernel dimensions";
00013 const static char XYPlaneMustBeSquareNoiseAmp[] = "Noise amplitude must have dimensions (Nx, Ny, Nz, M) = (%1d x %1d x %1d x %1d) based on the kernel dimensions";
00014 const static char ExpectedThetaMatrixDim[] = "Theta must be square and (%1d x %1d = %1d) on each side, based on kernel dimensions";
00015 const static char ModelKernelSameAlpha[] = "The model must have the same alpha dimension (same number of scatterers) as the kernel. Found %1d, expected %1d";
00016 const static char ModelKernelSameZ[] = "The model must have the same Z dimension as the kernel. Found %1d, expected %1d";
00017 const static char RandomSeedNegative[] = "Unable to use requested random seed because it is negative";
00018 const static char RandomSeedBad[] = "Unable to use requested random seed";
00019 const static char RandomSeedSysTime[] = "Using system time for random seed";
00020
00021 #endif