/* $Id$
$State$
$Log$
+ Revision 1.149 2014/06/18 15:51:14 brouard
+ Summary: Some fixes in parameter files errors
+ Author: Nicolas Brouard
+
Revision 1.148 2014/06/17 17:38:48 brouard
Summary: Nothing new
Author: Brouard
printf("Starting graphs with: %s\n",plotcmd);fflush(stdout);
if((outcmd=system(plotcmd)) != 0){
- printf("\n Problem with gnuplot\n");
+ printf("\n Problem with gnuplot command %s\n"plotcmd);
+ printf("\n Trying on same directory\n");
+ sprintf(plotcmd,"./gnuplot %s", optionfilegnuplot);
+ if((outcmd=system(plotcmd)) != 0)
+ printf("\n Still a problem with gnuplot command %s\n", plotcmd);
}
printf(" Wait...");
while (z[0] != 'q') {