Dear TOPAS experts,
I want to output the structural parameters and their errors within more simple format.
So I wrote following script in my imp file:
atom_out file append
load out_record out_fmt out_eqn {
" %f" = Get_From_String(Get(current_atom), beq);
" %f" = Error(Get_From_String(Get(current_atom), beq));
}
out file append
However, the line
Error(Get_From_String(Get(current_atom), beq))
does not return the error value.
Just returned the same value with
Get_From_String(Get(current_atom), beq)
.
Could you show me how to output the error of atomic parameters?