#include <apfel/timer.h>
#include <cstring>
 
int main(int argc, char* argv[])
{
  
  if (argc < 2 || strcmp(argv[1], "--help") == 0)
    {
      std::cout << "\nInvalid Parameters:" << std::endl;
      std::cout << "Syntax: ./ComputePredictions <table>\n" << std::endl;
      exit(-10);
    }
 
  
 
  
 
  
  apfel::Timer t;
 
  
  for (double p : ct.GetPredictions(NPFunc.Function()))
    std::cout << std::scientific << p << std::endl;
 
  t.stop();
  return 0;
}
Class that implements the methods fot the numerical convolution of the interpolation tables with user...
Definition: convolutiontable.h:25
 
Davies-Webber-Stirling parameterisation derived from the "Parameterisation" mother class.
Definition: DWS.h:18