--- trunk/src/applications/staticProps/RadialDistrFunc.cpp 2005/02/09 17:08:22 306 +++ trunk/src/applications/staticProps/RadialDistrFunc.cpp 2005/02/10 14:15:52 309 @@ -59,7 +59,7 @@ RadialDistrFunc:: RadialDistrFunc(SimInfo* info seleMan2_.setSelectionSet(evaluator2_->evaluate()); } - delta_ = len_ /nbins_; + deltaR_ = len_ /nbins_; } void RadialDistrFunc::process() { @@ -68,7 +68,7 @@ void RadialDistrFunc::process() { DumpReader reader(info_, dumpFilename_); int nFrames = reader->getNFrames(); - + nProcessed_ = nFrames / step_ + 1; for (int i = 0; i < nFrames; i += step_) { reader->readFrame(i); currentSnapshot_ = info_->getSnapshotManager()->getCurrentSnapshot(); @@ -99,7 +99,7 @@ void RadialDistrFunc::process() { postProcess(); - + writeRdf(); } }