/*************************************************************************** DESCRIPTION A function that calls calibrate and inform functions for specified ForecastHandlers and ObservationHandlers and dates. Note that the dates for the fh and oh don't have to match the dates specified, but those specified must constitute a subset of those in the fh or oh. AUTHOR Mike Smoot ***************************************************************************/ #ifndef GENERATE_H #define GENERATE_H #include "ForecastHandler.h" #include "ObservationHandler.h" #include "FractileEvaluation.h" #include "FractionEvaluation.h" #include "PopEvaluation.h" #include "Date.h" #include //------------------------------------------------------------------ // A function generally used my main() that will take handlers and // dates and call all of the necessary verification stuff. // void generate(const ForecastHandler& fh, const ObservationHandler& oh, const Date& beginDate, const Date& endDate); #endif