#include <cstring>
int main(int argc, char* argv[])
{
if (argc < 5 || strcmp(argv[1], "--help") == 0)
{
std::cout << "\nInvalid Parameters:" << std::endl;
std::cout << "Syntax: ./CreateStructGrids <main fit directory with TMD grids> <name of TMD PDF set> <name of TMD FF set> <output> <[optional] replica ID>\n" << std::endl;
exit(-10);
}
std::string rID;
if (argv[5])
rID = argv[5];
else
rID = "none";
return 0;
}
void ProduceStructGrid(std::string const &GridsDirectory, std::string const &GridTMDPDFfolder, std::string const &GridTMDFFfolder, std::string const &Output, std::string const &repID="none", std::string const &structype="FUUT")
This function encapsulates and streamlines the production of an interpolation grid for a structure fu...