Hi everybody,
on olb1.2 under ubuntu_18.04 GnuPlotHeatMapWriter.hh not working (work with 16.04)
(seem maybe having same pb with olb1.4 but not tested)
with following error :
"./tmp/imageData/data/heatMapl2physVelocity.p", line 5: unexpected or unrecognized token
modify code like this will made woking:
fout << "if (strstrt(GPVAL_TERMINALS, 'jpeg') > 0) {"<< "\n"<<; // modify here
fout << "set terminal jpeg " << "size " << 1920 << "," << 1080 << "font \",25\"" << "\n";
fout << "set output '"<< param.jpegPath << "'"<< "\n"; // modify here
fout << "} else {" <<< "\n"; // modify here
fout << "set terminal png " << "size " << 1920 << "," << 1080 << "font \",25\"" << "\n";
fout << "set output '"<< param.pngPath << "'"<< "\n";
fout << "}" << "\n";// modify here
regard
Laurent.