| 41 |  | #ifndef APPLICATIONS_STATICPROPS_RADIALDISTRFUNC_HPP | 
| 42 |  | #define APPLICATIONS_STATICPROPS_RADIALDISTRFUNC_HPP | 
| 43 |  |  | 
| 44 | + | #include <string> | 
| 45 |  | #include <vector> | 
| 46 |  |  | 
| 47 |  | #include "selection/SelectionEvaluator.hpp" | 
| 61 |  | void setNBins(int nbins) { | 
| 62 |  | assert(nbins > 0); | 
| 63 |  | nbins_ = nbins; | 
| 64 | < | delta_ = len_ / nbins_; | 
| 64 | > | deltaR_ = len_ / nbins_; | 
| 65 |  | } | 
| 66 |  |  | 
| 67 |  | int getNBins() { | 
| 90 |  | Snapshot* currentSnapshot_; | 
| 91 |  | double len_; | 
| 92 |  | int nbins_; | 
| 93 | < | double delta_; | 
| 93 | > | double deltaR_; | 
| 94 |  | std::string dumpFilename_; | 
| 95 |  | std::string outputFilename_; | 
| 96 |  | int step_; | 
| 97 |  | std::string selectionScript1_; | 
| 98 |  | std::string selectionScript2_; | 
| 99 | < |  | 
| 99 | > | int nProcessed_; | 
| 100 |  | private: | 
| 101 |  |  | 
| 102 |  | virtual void initalizeHistogram() {} |