00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef KFITTERERROR_H
00030 #define KFITTERERROR_H
00031
00032
00033 const unsigned int KF_NO_ERROR = 0;
00034
00035
00036
00037 const unsigned int KF_DIV_ZERO = 1;
00038 const unsigned int KF_TRACK_SIZE = 2;
00039 const unsigned int KF_INVERSE = 3;
00040 const unsigned int KF_INIT_CHISQ = 4;
00041 const unsigned int KF_ARCSIN = 5;
00042
00043
00044
00045 const unsigned int KF_INPUT_DIV_ZERO = 11;
00046 const unsigned int KF_INPUT_TRACK_SIZE = 12;
00047 const unsigned int KF_INPUT_MATRIX_SIZE = 13;
00048 const unsigned int KF_INPUT_CORRE_SIZE = 14;
00049
00050
00051
00052 const unsigned int KF_OUTPUT_DIV_ZERO = 21;
00053 const unsigned int KF_OUTPUT_TRACK_NUM = 22;
00054 const unsigned int KF_OUTPUT_OUT_RANGE = 23;
00055 const unsigned int KF_OUTPUT_INVERSE = 24;
00056
00057 #endif