00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef ATMODATA_FILE_ERRORS_HXX
00025
00026
00027 namespace AtmoData
00028 {
00029
00030
00031
00032 template<class T_ref, int N, class TG_ref,
00033 class T_comp, class TG_comp>
00034 T_ref NGE(Data<T_ref, N, TG_ref> data_ref,
00035 Data<T_comp, N, TG_comp>& data_comp,
00036 Function_Base<T_ref, bool>& test);
00037
00038
00039
00040 template<class T_ref, int N, class TG_ref,
00041 class T_comp, class TG_comp>
00042 T_ref Bias(Data<T_ref, N, TG_ref> data_ref,
00043 Data<T_comp, N, TG_comp>& data_comp,
00044 Function_Base<T_ref, bool>& test);
00045
00046
00047
00048 template<class T_ref, int N, class TG_ref,
00049 class T_comp, class TG_comp>
00050 T_ref RMS(Data<T_ref, N, TG_ref> data_ref,
00051 Data<T_comp, N, TG_comp>& data_comp,
00052 Function_Base<T_ref, bool>& test);
00053
00054
00055
00056 template<class T_ref, int N, class TG_ref,
00057 class T_comp, class TG_comp>
00058 T_ref RelativeRMS(Data<T_ref, N, TG_ref> data_ref,
00059 Data<T_comp, N, TG_comp>& data_comp,
00060 Function_Base<T_ref, bool>& test);
00061
00062 }
00063
00064
00065 #define ATMODATA_FILE_ERRORS_HXX
00066 #endif