#include <cstring>
int main(int argc, char* argv[])
{
if (argc < 4 || strcmp(argv[1], "--help") == 0)
{
std::cout << "\nInvalid Parameters:" << std::endl;
std::cout << "Syntax: ./CreateGrids <report folder> <pdf/ff> <output>\n" << std::endl;
exit(-10);
}
return 0;
}
void ProduceTMDGrid(std::string const &ReportFolder, std::string const &Output, std::string const &distype="pdf")
This function encapsulates and streamlines the production of an interpolation grid starting from the ...