The calculation of Bragg peaks is systematically not finding Bragg peaks with high Q_z values in our latest CTR datasets of Pt(110). The peak positions are calculated in ReciprocalNavigation.py, in the function thscanBragg():
Qmax = sxrddetector.Qmax # np.abs(sxrddetector.qArray()).max() / 10. # to Angstrom-1
hkls, angles = anglesAllowedReflections_G(xtal,None, alpha,Qmax,**keyargs)
It seems like the calculated Qmax is not correct, the problem can be fixed by adding an arbitrary value to Qmax when calling anglesAllowedReflections_G()
