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 #ifndef ATMODATA_FILE_ERRORS_HXX
00026
00027
00028 namespace AtmoData
00029 {
00030
00031
00032
00033 template<class T_ref, int N, class TG_ref,
00034 class T_comp, class TG_comp>
00035 T_ref NGE(Data<T_ref, N, TG_ref> data_ref,
00036 Data<T_comp, N, TG_comp>& data_comp,
00037 Function_Base<T_ref, bool>& test);
00038
00039
00040
00041 template<class T_ref, int N, class TG_ref,
00042 class T_comp, class TG_comp>
00043 T_ref Bias(Data<T_ref, N, TG_ref> data_ref,
00044 Data<T_comp, N, TG_comp>& data_comp,
00045 Function_Base<T_ref, bool>& test);
00046
00047
00048
00049 template<class T_ref, int N, class TG_ref,
00050 class T_comp, class TG_comp>
00051 T_ref RMS(Data<T_ref, N, TG_ref> data_ref,
00052 Data<T_comp, N, TG_comp>& data_comp,
00053 Function_Base<T_ref, bool>& test);
00054
00055
00056
00057 template<class T_ref, int N, class TG_ref,
00058 class T_comp, class TG_comp>
00059 T_ref RelativeRMS(Data<T_ref, N, TG_ref> data_ref,
00060 Data<T_comp, N, TG_comp>& data_comp,
00061 Function_Base<T_ref, bool>& test);
00062
00063 }
00064
00065
00066 #define ATMODATA_FILE_ERRORS_HXX
00067 #endif