mfisch
Hi all
out "Results.txt"
Out(PARAM_01, "%11.2f")
Out(PARAM_02, "%11.2f")
Out(PARAM_03, "%11.2f")
Is it possible to have the name of the Results.txt file automatically set to the name of the RAW file? E.g. something with Get(xdd_path_name)? I think the following is a good start, however, I did not find a way to link the RAWFILENAME with Get(xdd_path_name).
macro file_name {RAWFILENAME}
macro suffix {.txt}
macro file_dets(file_name, suffix){file_name##suffix}
macro file1{file_dets(file_name, suffix)}
out file1
Out(PARAM_01, "%11.2f")
Out(PARAM_02, "%11.2f")
Out(PARAM_03, "%11.2f")