The following line provides something wrong and I cannot zoom out in the graphics.
REAL*8, PARAMETER :: FactorZoom= 1.1D0, FactorInvers= 1.0D0/FactorZoom
If I place as first executable statement
write (*,'(f12.6)') FactorInvers
it writes the correct value and further processing is ok.
If I use instead:
REAL*8, PARAMETER :: FactorZoom= 1.1D0, FactorInvers= 0.9D0
everything works fine without the write statement.