source: TRACY3/trunk/tracy/gnuplot/MomAper.stat.plt @ 3

Last change on this file since 3 was 3, checked in by zhangj, 12 years ago

Initiale import

  • Property svn:executable set to *
File size: 602 bytes
Line 
1ps = 0; eps = 1; stat = 1;
2
3if (!ps) set terminal x11;
4if (ps && !eps) set terminal postscript enhanced color solid;
5if (ps && eps) set terminal postscript eps enhanced color solid;
6
7set grid;
8
9if (ps) set output "../out/MomAper.ps"
10set title "Momentum Aperture";
11set xlabel "s [m]";
12set ylabel "{/Symbol d}";
13#set yrange [0:];
14
15if (stat) plot "MomAper.out" using 2:3:5 notitle with errorlines 3, \
16          "MomAper.out" using 2:4:6 notitle with errorlines 3;
17
18if(!stat) plot "MomAper.out" using 2:3 notitle with lines 3, \
19          "MomAper.out" using 2:4 notitle with lines 3;
20
21if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.