| 53 | 
  | 
#include "applications/staticProps/StaticAnalyser.hpp" | 
| 54 | 
  | 
#include "applications/staticProps/GofR.hpp" | 
| 55 | 
  | 
#include "applications/staticProps/GofZ.hpp" | 
| 56 | 
+ | 
#include "applications/staticProps/GofRZ.hpp" | 
| 57 | 
  | 
#include "applications/staticProps/GofRAngle.hpp" | 
| 58 | 
  | 
#include "applications/staticProps/GofAngle2.hpp" | 
| 59 | 
  | 
#include "applications/staticProps/GofXyz.hpp" | 
| 64 | 
  | 
#include "applications/staticProps/SCDOrderParameter.hpp" | 
| 65 | 
  | 
#include "applications/staticProps/DensityPlot.hpp" | 
| 66 | 
  | 
#include "applications/staticProps/RhoZ.hpp" | 
| 67 | 
+ | 
#include "applications/staticProps/pAngle.hpp" | 
| 68 | 
  | 
#include "applications/staticProps/BondAngleDistribution.hpp" | 
| 69 | 
  | 
#include "applications/staticProps/NanoVolume.hpp" | 
| 70 | 
  | 
#if defined(HAVE_FFTW_H) || defined(HAVE_DFFTW_H) || defined(HAVE_FFTW3_H) | 
| 188 | 
  | 
  } else if (args_info.gofz_given) { | 
| 189 | 
  | 
    analyser= new GofZ(info, dumpFileName, sele1, sele2, maxLen, | 
| 190 | 
  | 
                       args_info.nbins_arg); | 
| 191 | 
+ | 
  } else if (args_info.r_z_given) { | 
| 192 | 
+ | 
    analyser  = new GofRZ(info, dumpFileName, sele1, sele2, maxLen,  | 
| 193 | 
+ | 
                              args_info.nbins_arg, args_info.nbins_z_arg); | 
| 194 | 
  | 
  } else if (args_info.r_theta_given) { | 
| 195 | 
  | 
    analyser  = new GofRTheta(info, dumpFileName, sele1, sele2, maxLen,  | 
| 196 | 
  | 
                              args_info.nbins_arg, args_info.nanglebins_arg); | 
| 262 | 
  | 
                              args_info.nbins_arg);   | 
| 263 | 
  | 
  } else if (args_info.slab_density_given) { | 
| 264 | 
  | 
    analyser = new RhoZ(info, dumpFileName, sele1, args_info.nbins_arg); | 
| 265 | 
+ | 
  } else if (args_info.p_angle_given) { | 
| 266 | 
+ | 
    analyser = new pAngle(info, dumpFileName, sele1, args_info.nbins_arg); | 
| 267 | 
  | 
#if defined(HAVE_FFTW_H) || defined(HAVE_DFFTW_H) || defined(HAVE_FFTW3_H) | 
| 268 | 
  | 
  }else if (args_info.hxy_given) { | 
| 269 | 
  | 
    analyser = new Hxy(info, dumpFileName, sele1, args_info.nbins_x_arg,  |