Skip to content
Snippets Groups Projects
Select Git revision
  • 6b7435751e44cb2135318d5850cd8ef90823937b
  • main default protected
  • GBE
  • dev
  • dev_rcm
  • dev_sync_lbp
  • 3.2
  • 3.1
  • 3.0
  • 2.5
  • 2.4
  • 2.3
  • 2.2.1
  • 2.2
  • 2.1
  • 2.0
  • 1.0
17 results

Makefile

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    MomAper.stat.plt 602 B
    ps = 0; eps = 1; stat = 1;
    
    if (!ps) set terminal x11;
    if (ps && !eps) set terminal postscript enhanced color solid;
    if (ps && eps) set terminal postscript eps enhanced color solid;
    
    set grid;
    
    if (ps) set output "../out/MomAper.ps"
    set title "Momentum Aperture";
    set xlabel "s [m]";
    set ylabel "{/Symbol d}";
    #set yrange [0:];
    
    if (stat) plot "MomAper.out" using 2:3:5 notitle with errorlines 3, \
              "MomAper.out" using 2:4:6 notitle with errorlines 3;
    
    if(!stat) plot "MomAper.out" using 2:3 notitle with lines 3, \
              "MomAper.out" using 2:4 notitle with lines 3;
    
    if (!ps) pause -1;