source: TRACY3/trunk/tracy/gnuplot/MomAper.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: 789 bytes
Line 
1ps = 0; eps = 0; stat = 0;
2
3if (!ps) set terminal x11;
4if (ps && !eps) \
5  set terminal postscript enhanced color solid lw 2 "Times-Roman" 20;
6if (ps && eps) \
7  set terminal postscript enhanced color solid lw 2 "Times-Roman" 20;
8
9set grid;
10
11set style line 1 lt 1 lw 1 lc rgb "blue";
12set style line 2 lt 1 lw 1 lc rgb "green";
13set style line 3 lt 1 lw 1 lc rgb "red";
14
15if (ps) set output "MomAper.ps"
16set title "Momentum Aperture";
17#set title "Momentum Aperture ({/Symbol t} = 2.6 hrs ())";
18set xlabel "s [m]";
19set ylabel "{/Symbol d} [%]";
20set y2range [-20:20];
21
22plot "linlat.out" using 3:4 axis x1y2 notitle with fsteps lt 1 lw 1 \
23     lc rgb "black", \
24     "mom_aper.out" using 2:3 notitle with lines ls 1, \
25     "mom_aper.out" using 2:4 notitle with lines ls 1;
26
27if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.