Bug in dataAnalysisWrapper3D.h in function evaluate

Dear developers,

I think I have found a bug:
In the file dataProcessors/dataAnalysisWrapper3D.h
In function evaluate(Function f, ScalarField3D<T>& field) at line 266

A new ScalarField3D is created from the size of the passed field
ScalarField3D<T>* result = new ScalarField3D<T>(field.getNx(), field.getNy());
However, the size of the 3D dimension is missing, i.e. field.getNz()

Kind Regards,
Julius