Nanga Parbat 1.1.0
A TMD fitting framework
ComputePredictions.cc
//
// Author: Valerio Bertone: valerio.bertone@cern.ch
//
#include <apfel/timer.h>
#include <cstring>
//_________________________________________________________________________________
int main(int argc, char* argv[])
{
// Check that the input is correct otherwise stop the code
if (argc < 2 || strcmp(argv[1], "--help") == 0)
{
std::cout << "\nInvalid Parameters:" << std::endl;
std::cout << "Syntax: ./ComputePredictions <table>\n" << std::endl;
exit(-10);
}
// Allocate "Parameterisation" object
NangaParbat::DWS NPFunc{};
// Upload convolution table
// Timer
apfel::Timer t;
// Get predictions and print them
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