Logo ROOT   6.14/05
Reference Guide
RooUnitTest.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitCore *
4  * File: $Id$
5  * Authors: *
6  * WV, Wouter Verkerke, NIKHEF, verkerke@nikhef.nl *
7  * *
8  * Copyright (c) 2000-2011, Regents of the University of California *
9  * and Stanford University. All rights reserved. *
10  * *
11  * Redistribution and use in source and binary forms, *
12  * with or without modification, are permitted according to the terms *
13  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
14  *****************************************************************************/
15 #ifndef ROO_UNIT_TEST
16 #define ROO_UNIT_TEST
17 
18 #include "Rtypes.h"
19 #include "TNamed.h"
20 #include "RooTable.h"
21 #include "RooWorkspace.h"
22 #include "RooFitResult.h"
23 #include "RooPlot.h"
24 #include "TFile.h"
25 #include "TH1.h"
26 #include <list>
27 #include <string>
28 #include <map>
29 
30 /*
31  * The tolerance for the curve test is put to 0.4 instead of 0.2 to take into
32  * account the small variations in the values of the likelihood which can occur
33  * in presence of a different treatment of floating point numbers.
34  */
35 
36 class RooUnitTest : public TNamed {
37 public:
38  RooUnitTest(const char* name, TFile* refFile, Bool_t writeRef, Int_t verbose) ;
39  ~RooUnitTest() ;
40 
41  void setDebug(Bool_t flag) { _debug = flag ; }
42  void setSilentMode() ;
43  void clearSilentMode() ;
44  void regPlot(RooPlot* frame, const char* refName) ;
45  void regResult(RooFitResult* r, const char* refName) ;
46  void regValue(Double_t value, const char* refName) ;
47  void regTable(RooTable* t, const char* refName) ;
48  void regWS(RooWorkspace* ws, const char* refName) ;
49  void regTH(TH1* h, const char* refName) ;
50  RooWorkspace* getWS(const char* refName) ;
51  Bool_t runTest() ;
53  Bool_t areTHidentical(TH1* htest, TH1* href) ;
54 
55  virtual Bool_t isTestAvailable() { return kTRUE ; }
56  virtual Bool_t testCode() = 0 ;
57 
58  virtual Double_t htol() { return 5e-4 ; } // histogram test tolerance (KS dist != prob)
59 #ifdef R__FAST_MATH
60  virtual Double_t ctol() { return 2e-3 ; } // curve test tolerance
61 #else
62  virtual Double_t ctol() { return 4e-3 ; } // curve test tolerance
63 #endif
64  virtual Double_t fptol() { return 1e-3 ; } // fit parameter test tolerance
65  virtual Double_t fctol() { return 1e-3 ; } // fit correlation test tolerance
66  virtual Double_t vtol() { return 1e-3 ; } // value test tolerance
67 
68  static void setMemDir(TDirectory* memDir);
69 
70 protected:
71 
72  static TDirectory* gMemDir ;
73 
78  std::list<std::pair<RooPlot*, std::string> > _regPlots ;
79  std::list<std::pair<RooFitResult*, std::string> > _regResults ;
80  std::list<std::pair<Double_t, std::string> > _regValues ;
81  std::list<std::pair<RooTable*,std::string> > _regTables ;
82  std::list<std::pair<RooWorkspace*,std::string> > _regWS ;
83  std::list<std::pair<TH1*,std::string> > _regTH ;
84 
85  ClassDef(RooUnitTest,0) ; // Abstract base class for RooFit/RooStats unit regression tests
86 } ;
87 #endif
void setDebug(Bool_t flag)
Definition: RooUnitTest.h:41
void ws()
Definition: ws.C:62
virtual Double_t vtol()
Definition: RooUnitTest.h:66
void regWS(RooWorkspace *ws, const char *refName)
std::list< std::pair< RooFitResult *, std::string > > _regResults
Definition: RooUnitTest.h:79
std::list< std::pair< RooWorkspace *, std::string > > _regWS
Definition: RooUnitTest.h:82
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:47
Bool_t areTHidentical(TH1 *htest, TH1 *href)
Bool_t _write
Definition: RooUnitTest.h:76
TFile * _refFile
Definition: RooUnitTest.h:74
Int_t _verb
Definition: RooUnitTest.h:77
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual Double_t htol()
Definition: RooUnitTest.h:58
RooUnit test is an abstract base class for unit regression tests for RooFit and RooStats tests perfor...
Definition: RooUnitTest.h:36
#define ClassDef(name, id)
Definition: Rtypes.h:320
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
RooUnitTest(const char *name, TFile *refFile, Bool_t writeRef, Int_t verbose)
Definition: RooUnitTest.cxx:59
static TDirectory * gMemDir
Definition: RooUnitTest.h:72
RooWorkspace * getWS(const char *refName)
static void setMemDir(TDirectory *memDir)
Set gMemDir to memDir.
ROOT::R::TRInterface & r
Definition: Object.C:4
virtual Bool_t isTestAvailable()
Definition: RooUnitTest.h:55
std::list< std::pair< TH1 *, std::string > > _regTH
Definition: RooUnitTest.h:83
void regValue(Double_t value, const char *refName)
virtual Double_t ctol()
Definition: RooUnitTest.h:62
Bool_t _debug
Definition: RooUnitTest.h:75
void clearSilentMode()
virtual Bool_t testCode()=0
#define h(i)
Definition: RSha256.hxx:106
A RooPlot is a plot frame and a container for graphics objects within that frame. ...
Definition: RooPlot.h:41
void regPlot(RooPlot *frame, const char *refName)
Definition: RooUnitTest.cxx:75
std::list< std::pair< RooTable *, std::string > > _regTables
Definition: RooUnitTest.h:81
void regTable(RooTable *t, const char *refName)
void setSilentMode()
double Double_t
Definition: RtypesCore.h:55
Describe directory structure in memory.
Definition: TDirectory.h:34
The TH1 histogram class.
Definition: TH1.h:56
you should not use this method at all Int_t Int_t Double_t Double_t Double_t e
Definition: TRolke.cxx:630
std::list< std::pair< Double_t, std::string > > _regValues
Definition: RooUnitTest.h:80
virtual Double_t fctol()
Definition: RooUnitTest.h:65
std::list< std::pair< RooPlot *, std::string > > _regPlots
Definition: RooUnitTest.h:78
virtual Double_t fptol()
Definition: RooUnitTest.h:64
Bool_t runTest()
RooTable is the abstract interface for table objects.
Definition: RooTable.h:24
void regTH(TH1 *h, const char *refName)
const Bool_t kTRUE
Definition: RtypesCore.h:87
char name[80]
Definition: TGX11.cxx:109
The RooWorkspace is a persistable container for RooFit projects.
Definition: RooWorkspace.h:43
Bool_t runCompTests()
void regResult(RooFitResult *r, const char *refName)
Definition: RooUnitTest.cxx:89