ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/src/applications/staticProps/GofXyz.hpp
(Generate patch)

Comparing trunk/OOPSE-3.0/src/applications/staticProps/GofXyz.hpp (file contents):
Revision 1995 by tim, Thu Feb 10 22:37:21 2005 UTC vs.
Revision 2038 by tim, Wed Feb 16 20:30:50 2005 UTC

# Line 47 | Line 47 | class GofXyz : public RadialDistrFunc {
47   class GofXyz : public RadialDistrFunc {
48      
49      public:
50 <        GofXyz(SimInfo* info, const std::string& filename, const std::string& sele1, const std::string& sele2);
50 >        GofXyz(SimInfo* info, const std::string& filename, const std::string& sele1, const std::string& sele2, double len, int nrbins);
51  
52        void setNRBins(int nbins) {
53            assert(nbins > 0);
54            nRBins_ = nbins;
55            deltaR_ = len_ / nRBins_;
56            
57            histogram_.resize(nRBins_);
58            for (int i = 0 ; i < nRBins_; ++i) {
59                histogram_[i].resize(nRBins_);
60                for(int j = 0; j < nRBins_; ++j) {
61                    histogram_[i][j].resize(nRBins_);
62                }
63            }            
64        }
65
52          int getNRBins() {
53              return nRBins_;
54          }
55          
70        void setLength(double len) {
71            len_ = len;
72            deltaR_ = len_ /nRBins_;                
73        }
74
56          double getLength() {
57              return len_;
58          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines