Dear experts,
Regarding the plotting in FLUKA, I have few queries.
For a DETECT card scoring, the default X asix is in GeV, but I want it to be in MeV.
The default command is
plot 'Si_1_17_tab.lis' ind 0 us 1:3 w steps lt 1 lw 2 lc rgb 'red't 'Detector 1', \
'' ind 0 us (($1+$2)/2.0):3:($3*($4/100.)) w errorbars lt 1 lw 2 lc rgb 'red' pt 0 ps 1 notitle
So to make the unit in MeV, I wrote in the box,
plot 'Si_1_17_tab.lis' ind 0 us ($1*1000):3 w steps lt 1 lw 2 lc rgb 'red't 'Detector 1', \
'' ind 0 us (($1*1000+$2*1000)/2.0):3:($3*($4/100.)) w errorbars lt 1 lw 2 lc rgb 'red' pt 0 ps 1 notitle
It seems working, but I faced the following issues:
- There are two legend lines
- After writing the above plot command, no other command is getting activated for e.g.
set lmargin screen 0.1
set rmargin screen 0.8
set ytics format “%1.2e”
set xtics format “%1.2e”
set xtics 5
Is there any other place where I can include the unit conversion of X and Y axis instead of the box?
Regards,
Riya