pro plot_pfcorr,CARROT1=CARROT1,CARROT2=CARROT2 if keyword_set(carrot1) then frotation=carrot1 else frotation=2071 if keyword_set(carrot2) then lrotation=carrot2 else lrotation=frotation print,'Making PFCorrected plots for CR',frotation,' to ',lrotation ; .compile plot_synop.pro for rotation = frotation,lrotation do begin datafil = string(format='("/surge40/synoptic/carrot/M_Corr/synop_Mr_0.polfil.",i4,".fits")',rotation) print,datafil plot_synop, in=datafil, /gif, /next, /carrot end end