/*************************************************************************** DESCRIPTION Various constants used by the verifcation system. AUTHOR Mike Smoot ***************************************************************************/ #ifndef VERIFYCONSTANTS_H #define VERIFYCONSTANTS_H //---------------------------------------------------------------------- // ln(-ln(0.25)) - ln(-ln(0.50)) // const float constantC = 0.6931471806; //---------------------------------------------------------------------- // (ln(-ln(0.25)))/constantC // const float constantA = 0.471233627; //---------------------------------------------------------------------- // (-ln(-ln(0.50)))/constantC // const float constantB = 0.528766373; //---------------------------------------------------------------------- // Number of points in Full (both Pittsburgh and Charleston WFOs) forecast. // const int fullForecast = 6864; //---------------------------------------------------------------------- // Number of points in Pittsburgh WFO forecast. // const int pittForecast = 3263; //---------------------------------------------------------------------- // Number of points in a full Observation. // const int fullObservation = 45825; //---------------------------------------------------------------------- // Maximum possible number of areas, which is 1 point per area (for // a full observation). // const int maxNumAreas = 45825; #endif