source: TRACY3/trunk/tracy/gnuplot/lifetime.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: 637 bytes
Line 
1ps = 1; eps = 1;
2
3if (!ps) set terminal x11;
4if (ps && !eps) set terminal postscript enhanced color solid lw 2 "Times-Roman" 25;
5if (ps && eps) set terminal postscript enhanced color solid lw 2 "Times-Roman" 25;
6#if (ps && !eps) set terminal postscript enhanced color solid;
7#if (ps && eps) set terminal postscript eps enhanced color solid;
8
9set grid;
10
11if (ps) set output "lifetimes.ps"
12set title "Touschek lifetime vs. CPMU vertical half gap";
13set xlabel "half gap size [mm]";
14set ylabel "{/Symbol t} (hrs)";
15#set yrange [0:];
16
17plot "lifetimes.dat" using 1:2 notitle with linespoints lw 2 pointsize 3 lc rgb "red";
18
19
20if (!ps) pause -1;
Note: See TracBrowser for help on using the repository browser.