~ubuntu-branches/ubuntu/maverick/openturns/maverick

« back to all changes in this revision

Viewing changes to lib/src/Base/Stat/TestResult.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2008-11-18 06:32:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20081118063222-pa0qncclrerrqkg2
Tags: 0.12.2-1
* New upstream release
* Bug fix: "New upstream release available (0.12.2)", thanks to Jerome
  Robert (Closes: #506005).
* Applied patch by J. Robert.
* debian/control: build-depends on libxml2

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21
21
 *
22
22
 *  @author: $LastChangedBy: dutka $
23
 
 *  @date:   $LastChangedDate: 2008-05-21 11:21:38 +0200 (mer, 21 mai 2008) $
24
 
 *  Id:      $Id: TestResult.cxx 815 2008-05-21 09:21:38Z dutka $
 
23
 *  @date:   $LastChangedDate: 2008-10-31 11:52:04 +0100 (ven 31 oct 2008) $
 
24
 *  Id:      $Id: TestResult.cxx 995 2008-10-31 10:52:04Z dutka $
25
25
 */
26
26
#include "TestResult.hxx"
27
27
 
40
40
 
41
41
      /* Default constructor */
42
42
      TestResult::TestResult():
43
 
        PersistentObject(OT::DefaultName),
 
43
        PersistentObject(),
44
44
        testType_(""),
45
45
        binaryQualityMeasure_(false),
46
46
        pValueThreshold_(0.0),
53
53
      TestResult::TestResult(const String & type,
54
54
                             const Bool binMeasure,
55
55
                             const NumericalScalar pVal,
56
 
                             const NumericalScalar pThreshold,
57
 
                             const String & name):
58
 
        PersistentObject(name),
 
56
                             const NumericalScalar pThreshold):
 
57
        PersistentObject(),
59
58
        testType_(type),
60
59
        binaryQualityMeasure_(binMeasure),
61
60
        pValueThreshold_(pThreshold),