Hi everyone,
In sample file 「PythonStandalone_02_NSC_ray_trace.py」, I found several slight mistakes and going to share here.
First in Line 192,
pix = 0
setting parameter pix as 0 may cause unexpected detector data of the firt pixel(Line 199). Changing pix to 1 may fix the problem.
And in Line 216,
detectorData = zos.transpose(detectorData)
「transpose」should be function of 「numpy(np)」,this may be typing mistake.
Please confirm and I hope it helps.