Merge pull request #3006 from RosettaCommons/vmullig/tweak_fit_helixparams_restype_access
Small tweak to a pilot app.
In older code, I had a bad habit of using pose.residue(i).type() instead of pose.residue_type(i). This, unfortunately, can trigger a refold, which is computationally expensive if you just want to interrogate the residue type for some information. This pull request updates a pilot app that others might be using for reference to avoid doing this.