significant figures fix ave/time

Please keep the list in the loop.

Those lines print the header sections of the
file. You need to look for a fprint() that
uses %g, which is a floating point value.

Read a C manual on how to change %g to
something that has higher precision. Or
look in thermo.cpp to see how it is done.

Steve

Thanks Steve.

Using the %g in the fprint statement takes the shorter of %f and %e. Changing %g to %f in the fprint statement changes to precision from 6 sig figs total, to 6 decimal places being printed. So, problem solved. Thanks.

Ben