1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
// -*- C++ -*-
// -------------------------------------------------------------------
// MAdLib - Copyright (C) 2008-2009 Universite catholique de Louvain
//
// See the Copyright.txt and License.txt files for license information.
// You should have received a copy of these files along with MAdLib.
// If not, see <http://www.madlib.be/license/>
//
// Please report all bugs and problems to <contrib@madlib.be>
//
// Authors: Gaetan Compere, Jean-Francois Remacle
// -------------------------------------------------------------------
#ifndef _H_ELEMENTSTATISTICS
#define _H_ELEMENTSTATISTICS
#include "MAdDefines.h"
namespace MAd {
// -------------------------------------------------------------------
class ElementStatistics {
public:
ElementStatistics();
ElementStatistics(const ElementStatistics &);
~ElementStatistics() {};
// interface to set information
void reset();
void setWorstShape(double v) { worstShape = v; }
void setMaxLenSq(double v) { maxLenSq = v; }
void setMinLenSq(double v) { minLenSq = v; }
// interface to get information
double getWorstShape() const { return worstShape; }
double getMaxLenSq() const { return maxLenSq; }
double getMinLenSq() const { return minLenSq; }
private:
double worstShape;
double minLenSq, maxLenSq;
};
// -------------------------------------------------------------------
inline ElementStatistics::ElementStatistics()
{
reset();
}
// -------------------------------------------------------------------
inline ElementStatistics::ElementStatistics(const ElementStatistics & eq)
{
worstShape = eq.worstShape;
minLenSq = eq.minLenSq;
maxLenSq = eq.maxLenSq;
}
// -------------------------------------------------------------------
inline void ElementStatistics::reset()
{
worstShape = MAdBIG;
minLenSq = MAdBIG;
maxLenSq = 0.0;
}
// -------------------------------------------------------------------
}
#endif
|