source: TRACY3/trunk/tracy/gnuplot/chambre.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: 634 bytes
Line 
1ps = 0; eps = 0;
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 "chambre_1.ps"
10set title "Horizontal Mechanical Aperture";
11set xlabel "s [m]";
12set ylabel "x [mm]";
13plot "chambre.out" using 3:4 notitle with fsteps 2, \
14     "chambre.out" using 3:5 notitle with fsteps 2;
15if (!ps) pause -1;
16
17if (ps) set output "chambre_2.ps"
18set title "Vertical Mechanical Aperture";
19set xlabel "s [m]";
20set ylabel "y [mm]";
21set yrange [0:];
22plot "chambre.out" using 3:6 notitle with fsteps 2;
23if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.