00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef ODINPARA_H
00019 #define ODINPARA_H
00020
00021
00022
00023
00037 enum direction { readDirection=0, phaseDirection, sliceDirection, n_directions};
00038 static const char* directionLabel[]={"readDirection", "phaseDirection","sliceDirection"};
00039
00046 enum axis {xAxis=0,yAxis,zAxis,n_axes};
00047
00048
00049
00050
00051 #define ODIN_TIME_UNIT "ms"
00052 #define ODIN_FREQ_UNIT "kHz"
00053 #define ODIN_SPAT_UNIT "mm"
00054 #define ODIN_FIELD_UNIT "mT"
00055 #define ODIN_GRAD_UNIT "mT/mm"
00056 #define ODIN_ANGLE_UNIT "deg"
00057
00058
00059
00060 #define ODIN_DEFAULT_FOV 220.0
00061 #define ODIN_MAX_NUMOF_SLICES 50
00062 #define ODIN_GEO_CHECK_LIMIT 1e-6
00063
00064
00065
00066 class Para {
00067 public:
00068 static const char* get_compName();
00069 };
00070
00071
00077 #endif