Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
HypoTestCalculatorGeneric.h
Go to the documentation of this file.
1 // @(#)root/roostats:$Id$
2 // Author: Kyle Cranmer, Sven Kreiss 23/05/10
3 /*************************************************************************
4  * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
5  * All rights reserved. *
6  * *
7  * For the licensing terms see $ROOTSYS/LICENSE. *
8  * For the list of contributors see $ROOTSYS/README/CREDITS. *
9  *************************************************************************/
10 
11 #ifndef ROOSTATS_HypoTestCalculatorGeneric
12 #define ROOSTATS_HypoTestCalculatorGeneric
13 
14 
15 #ifndef ROOT_Rtypes
16 #include "Rtypes.h" // necessary for TNamed
17 #endif
18 
20 
21 #include "RooStats/ModelConfig.h"
22 
23 #include "RooStats/TestStatistic.h"
24 
26 
28 
30 
31 
32 namespace RooStats {
33 
34  class HypoTestCalculatorGeneric : public HypoTestCalculator {
35 
36  public:
37  HypoTestCalculatorGeneric(
38  const RooAbsData &data,
39  const ModelConfig &altModel,
40  const ModelConfig &nullModel,
41  TestStatSampler* sampler=0
42  );
43 
44 
45  ~HypoTestCalculatorGeneric();
46 
47 
48  public:
49 
50  /// inherited methods from HypoTestCalculator interface
51  virtual HypoTestResult* GetHypoTest() const;
52 
53  // set the model for the null hypothesis (only B)
54  virtual void SetNullModel(const ModelConfig &nullModel) { fNullModel = &nullModel; }
55  const RooAbsData * GetData(void) const { return fData; }
56  const ModelConfig* GetNullModel(void) const { return fNullModel; }
57  virtual const RooArgSet* GetFitInfo() const { return NULL; }
58  /// Set the model for the alternate hypothesis (S+B)
59  virtual void SetAlternateModel(const ModelConfig &altModel) { fAltModel = &altModel; }
60  const ModelConfig* GetAlternateModel(void) const { return fAltModel; }
61  /// Set the DataSet
62  virtual void SetData(RooAbsData &data) { fData = &data; }
63 
64  /// Returns instance of TestStatSampler. Use to change properties of
65  /// TestStatSampler, e.g. GetTestStatSampler.SetTestSize(Double_t size);
66  TestStatSampler* GetTestStatSampler(void) const { return fTestStatSampler; }
67 
68  /// Set this for re-using always the same toys for alternate hypothesis in
69  /// case of calls at different null parameter points
70  /// This is useful to get more stable bands when running the HypoTest inversion
71  void UseSameAltToys();
72 
73 
74  protected:
75  // should return zero (to be used later for conditional flow)
76  virtual int CheckHook(void) const { return 0; }
77  virtual int PreNullHook(RooArgSet* /*parameterPoint*/, double /*obsTestStat*/) const { return 0; }
78  virtual int PreAltHook(RooArgSet* /*parameterPoint*/, double /*obsTestStat*/) const { return 0; }
79  virtual void PreHook() const { }
80  virtual void PostHook() const { }
81 
82  protected:
83  const ModelConfig *fAltModel;
84  const ModelConfig *fNullModel;
85  const RooAbsData *fData;
86  TestStatSampler *fTestStatSampler;
87  TestStatSampler *fDefaultSampler;
88  TestStatistic *fDefaultTestStat;
89 
90  unsigned int fAltToysSeed; // to have same toys for alternate
91 
92  private:
93  void SetupSampler(const ModelConfig& model) const;
94  void SetAdaptiveLimits(Double_t obsTestStat, Bool_t forNull) const;
95  SamplingDistribution* GenerateSamplingDistribution(
96  ModelConfig *thisModel,
97  double obsTestStat,
98  RooAbsPdf *impDens=NULL,
99  const RooArgSet *impSnapshot=NULL
100  ) const;
101 
102 
103  protected:
104  ClassDef(HypoTestCalculatorGeneric,2)
105 };
106 }
107 
108 #endif