Home | History | Annotate | Download | only in plot

Lines Matching refs:tmp_filename

94                 tmp_filename = "gnuplot_temp_file.%d" % pos
99 compare_raw.write(",\\\n'%s' using 2:3 with linespoints title '%s'" % (tmp_filename,fio_data_file[pos]))
100 compare_smooth.write(",\\\n'%s' using 2:3 smooth csplines title '%s'" % (tmp_filename,fio_data_file[pos]))
101 compare_trend.write(",\\\n'%s' using 2:3 smooth bezier title '%s'" % (tmp_filename,fio_data_file[pos]))
108 f.write("call \'%s/graph2D.gpm\' \'%s' \'%s\' \'%s\' \'%s\' \'%s\' \'%s\' \'%s\' \'%f\'\n" % (gpm_dir,title,tmp_filename,fio_data_file[pos],raw_filename,mode,smooth_filename,trend_filename,avg))
133 tmp_filename = "%sgnuplot_temp_file.%d" % (gnuplot_output_dir, pos)
134 temp_files.append(open(tmp_filename,'r'))
162 tmp_filename = "%sgnuplot_temp_file.%d" % (gnuplot_output_dir,pos)
163 temporary_files.append(tmp_filename)
164 gnuplot_file=open(tmp_filename,'w')