Welcome to the PyFR Discourse.
I’m not entirely sure what you mean by your question, but maybe some more background on the method might help. Sorry in advance if I tell you what you already know.
So what PyFR is implementing is broadly the FR method of Huynh (2007) and its extensions. The methods sits somewhere between finite element/discontinuous Galerkin and finite difference (sort of).
At the input we take a mesh, this defines the element boundaries. PyFR will then place within these elements a set of solution points and flux points (interface points), the exact method that is used to place these points is set in the .ini
file. For lines, quadrilaterals, and hexahedrals, yes, Gaussian quadrature is a perfectly reasonable way to do that.
When the solution is computed it is done at these points and polynomial interpolation is used to calculate derivatives among other things. By way of example a single p=4 hexahedral element will have 125 solution points.
Coming to anti-aliasing, for non-linear equation sets if you are under-resolved then non-linearities can lead to large amplitude high frequency content that may only be resolved in its aliased representation. This behaviour is often not desirable and can even lead the simulation to diverge. Two potential remedies are: more resolution or anti-aliasing. For the later we use a similar method to Spiegel et al. (2015), which can be tersely summarized as: interpolate the solution to AA points, calculate the flux at these points, calculated the divergence for the flux, and then use an L2 projection back to the solution points.
For both the solution points and anti-aliasing points the number that are placed inside an element is determined by the order, dimension, and approximation space. This last point is only indirectly controlled in PyFR through the quadrature used to set the point locations.
When you export the solution file to VTU file for visualisation, you then have several options relating to how must resolution you’d like included. See the posts by @GonzaloS for more on that.
I hope this helps and say if I’ve missed the point of your question