Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

template<class ArrayT>
Impala::Core::Array::Statistics< ArrayT >::~Statistics (  )  [inline]

Definition at line 54 of file Statistics.h.

00055     {
00056         if (mMinVal)
00057         {
00058             delete mMinVal;
00059             delete mMaxVal;
00060             delete mSum;
00061             delete mSumSqr;
00062             delete mSumAbs;
00063             delete mTmp;
00064         }
00065         if (mMean)
00066         {
00067             delete mMean;
00068             delete mVariance;
00069         }
00070         if (mStDev)
00071             delete mStDev;
00072         for (int i=0 ; i<mRunList.size() ; i++)
00073             delete mRunList[i];
00074     }


Generated on Thu Jan 13 09:17:22 2011 for ImpalaSrc by  doxygen 1.5.1