Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooAbsTestStatistic.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooAbsGoodnessOfFit.h,v 1.15 2007/05/11 09:11:30 verkerke Exp $
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16#ifndef ROO_ABS_TEST_STATISTIC
17#define ROO_ABS_TEST_STATISTIC
18
19#include "RooAbsReal.h"
20#include "RooSetProxy.h"
21#include "RooRealProxy.h"
22#include "TStopwatch.h"
23#include "Math/Util.h"
24
25#include <string>
26#include <vector>
27
28class RooArgSet ;
29class RooAbsData ;
30class RooAbsReal ;
31class RooSimultaneous ;
32class RooRealMPFE ;
33
37
39 friend class RooRealMPFE;
40public:
41
43 /// Stores the configuration parameters for RooAbsTestStatistic.
44 std::string rangeName = "";
45 std::string addCoefRangeName = "";
46 int nCPU = 1;
48 bool verbose = true;
49 bool splitCutRange = false;
50 bool cloneInputData = true;
52 bool binnedL = false;
54 };
55
56 // Constructors, assignment etc
57 RooAbsTestStatistic(const char *name, const char *title, RooAbsReal& real, RooAbsData& data,
58 const RooArgSet& projDeps, Configuration const& cfg);
59 RooAbsTestStatistic(const RooAbsTestStatistic& other, const char* name=nullptr);
60 ~RooAbsTestStatistic() override;
61 virtual RooAbsTestStatistic* create(const char *name, const char *title, RooAbsReal& real, RooAbsData& data,
62 const RooArgSet& projDeps, Configuration const& cfg) = 0;
63
64 void constOptimizeTestStatistic(ConstOpCode opcode, bool doAlsoTrackingOpt=true) override ;
65
66 virtual double combinedValue(RooAbsReal** gofArray, Int_t nVal) const = 0 ;
67 virtual double globalNormalization() const {
68 // Default value of global normalization factor is 1.0
69 return 1.0 ;
70 }
71
72 bool setData(RooAbsData& data, bool cloneData=true) override ;
73
74 void enableOffsetting(bool flag) override ;
75 bool isOffsetting() const override { return _doOffset ; }
76 double offset() const override { return _offset.Sum() ; }
77 virtual double offsetCarry() const { return _offset.Carry(); }
78
81 // Return test statistic operation mode of this instance (SimMaster, MPMaster or Slave)
82 return _gofOpMode ;
83 }
84
85protected:
86
87 void printCompactTreeHook(std::ostream& os, const char* indent="") override ;
88
89 bool redirectServersHook(const RooAbsCollection& newServerList, bool mustReplaceAll, bool nameChange, bool isRecursive) override ;
90 double evaluate() const override ;
91
92 virtual double evaluatePartition(std::size_t firstEvent, std::size_t lastEvent, std::size_t stepSize) const = 0 ;
93 virtual double getCarry() const;
94
95 // Overridden in cache-optimized test statistic
96 virtual void runRecalculateCache(std::size_t /*firstEvent*/, std::size_t /*lastEvent*/, std::size_t /*stepSize*/) const {}
97
99 void setSimCount(Int_t simCount) {
100 // Store total number of components p.d.f. of a RooSimultaneous in this component test statistic
101 _simCount = simCount ;
102 }
103
104 void setEventCount(Int_t nEvents) {
105 // Store total number of events in this component test statistic
106 _nEvents = nEvents ;
107 }
108
109 Int_t numSets() const {
110 // Return total number of sets for parallel calculation
111 return _numSets ;
112 }
113 Int_t setNum() const {
114 // Return parallel calculation set number for this instance
115 return _setNum ;
116 }
117
118 RooSetProxy _paramSet ; ///< Parameters of the test statistic (=parameters of the input function)
119
120
121 // Original arguments
122 RooAbsReal* _func = nullptr; ///< Pointer to original input function
123 RooAbsData* _data = nullptr; ///< Pointer to original input dataset
124 const RooArgSet* _projDeps = nullptr; ///< Pointer to set with projected observables
125 std::string _rangeName ; ///< Name of range in which to calculate test statistic
126 std::string _addCoefRangeName ; ///< Name of reference to be used for RooAddPdf components
127 bool _splitRange = false; ///< Split rangeName in RooSimultaneous index labels if true
128 Int_t _simCount = 1; ///< Total number of component p.d.f.s in RooSimultaneous (if any)
129 bool _verbose = false; ///< Verbose messaging if true
130
131 virtual bool setDataSlave(RooAbsData& /*data*/, bool /*cloneData*/=true, bool /*ownNewDataAnyway*/=false) { return true ; }
132
133 //private:
134
135
136 virtual bool processEmptyDataSets() const { return true ; }
137
138 bool initialize() ;
139 void initSimMode(RooSimultaneous* pdf, RooAbsData* data, const RooArgSet* projDeps, std::string const& rangeName, std::string const& addCoefRangeName) ;
140 void initMPMode(RooAbsReal* real, RooAbsData* data, const RooArgSet* projDeps, std::string const& rangeName, std::string const& addCoefRangeName) ;
141
142 mutable bool _init = false; ///<! Is object initialized
143 GOFOpMode _gofOpMode = Slave; ///< Operation mode of test statistic instance
144
145 Int_t _nEvents = 0; ///< Total number of events in test statistic calculation
146 Int_t _setNum = 0; ///< Partition number of this instance in parallel calculation mode
147 Int_t _numSets = 1; ///< Total number of partitions in parallel calculation mode
148 Int_t _extSet = 0; ///<! Number of designated set to calculated extended term
149
150 // Simultaneous mode data
151 std::vector<std::unique_ptr<RooAbsTestStatistic>> _gofArray; ///<! Array of sub-contexts representing part of the combined test statistic
152
153 // Parallel mode data
154 Int_t _nCPU = 1; ///< Number of processors to use in parallel calculation mode
155 pRooRealMPFE* _mpfeArray = nullptr; ///<! Array of parallel execution frond ends
156
157 RooFit::MPSplit _mpinterl = RooFit::BulkPartition; ///< Use interleaving strategy rather than N-wise split for partitioning of dataset for multiprocessor-split
158 bool _doOffset = false; ///< Apply interval value offset to control numeric precision?
159 const bool _takeGlobalObservablesFromData = false; ///< If the global observable values are taken from data
160 mutable ROOT::Math::KahanSum<double> _offset {0.0}; ///<! Offset as KahanSum to avoid loss of precision
161 mutable double _evalCarry = 0.0; ///<! carry of Kahan sum in evaluatePartition
162
163 ClassDefOverride(RooAbsTestStatistic,0) // Abstract base class for real-valued test statistics
164
165};
166
167#endif
RooAbsData * pRooAbsData
RooRealMPFE * pRooRealMPFE
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
static void indent(ostringstream &buf, int indent_level)
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
char name[80]
Definition TGX11.cxx:110
The Kahan summation is a compensated summation algorithm, which significantly reduces numerical error...
Definition Util.h:122
T Sum() const
Definition Util.h:240
T Carry() const
Definition Util.h:250
Abstract container object that can hold multiple RooAbsArg objects.
Abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:57
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:59
Abstract base class for all test statistics.
Int_t _setNum
Partition number of this instance in parallel calculation mode.
virtual RooAbsTestStatistic * create(const char *name, const char *title, RooAbsReal &real, RooAbsData &data, const RooArgSet &projDeps, Configuration const &cfg)=0
virtual bool processEmptyDataSets() const
double _evalCarry
! carry of Kahan sum in evaluatePartition
std::string _addCoefRangeName
Name of reference to be used for RooAddPdf components.
Int_t _nEvents
Total number of events in test statistic calculation.
GOFOpMode operMode() const
Int_t _nCPU
Number of processors to use in parallel calculation mode.
RooSetProxy _paramSet
Parameters of the test statistic (=parameters of the input function)
virtual double globalNormalization() const
RooAbsReal * _func
Pointer to original input function.
bool setData(RooAbsData &data, bool cloneData=true) override
Change dataset that is used to given one.
void printCompactTreeHook(std::ostream &os, const char *indent="") override
Add extra information on component test statistics when printing itself as part of a tree structure.
Int_t _numSets
Total number of partitions in parallel calculation mode.
RooFit::MPSplit _mpinterl
Use interleaving strategy rather than N-wise split for partitioning of dataset for multiprocessor-spl...
bool isOffsetting() const override
double evaluate() const override
Calculate and return value of test statistic.
GOFOpMode _gofOpMode
Operation mode of test statistic instance.
virtual bool setDataSlave(RooAbsData &, bool=true, bool=false)
void initMPMode(RooAbsReal *real, RooAbsData *data, const RooArgSet *projDeps, std::string const &rangeName, std::string const &addCoefRangeName)
Initialize multi-processor calculation mode.
std::string _rangeName
Name of range in which to calculate test statistic.
void constOptimizeTestStatistic(ConstOpCode opcode, bool doAlsoTrackingOpt=true) override
Forward constant term optimization management calls to component test statistics.
bool _init
! Is object initialized
Int_t _simCount
Total number of component p.d.f.s in RooSimultaneous (if any)
ROOT::Math::KahanSum< double > _offset
! Offset as KahanSum to avoid loss of precision
virtual void runRecalculateCache(std::size_t, std::size_t, std::size_t) const
void setSimCount(Int_t simCount)
Int_t _extSet
! Number of designated set to calculated extended term
void setEventCount(Int_t nEvents)
double offset() const override
std::vector< std::unique_ptr< RooAbsTestStatistic > > _gofArray
! Array of sub-contexts representing part of the combined test statistic
bool initialize()
One-time initialization of the test statistic.
virtual double offsetCarry() const
const RooArgSet * _projDeps
Pointer to set with projected observables.
void initSimMode(RooSimultaneous *pdf, RooAbsData *data, const RooArgSet *projDeps, std::string const &rangeName, std::string const &addCoefRangeName)
Initialize simultaneous p.d.f processing mode.
~RooAbsTestStatistic() override
Destructor.
virtual double getCarry() const
bool _verbose
Verbose messaging if true.
void enableOffsetting(bool flag) override
virtual double evaluatePartition(std::size_t firstEvent, std::size_t lastEvent, std::size_t stepSize) const =0
bool _splitRange
Split rangeName in RooSimultaneous index labels if true.
virtual double combinedValue(RooAbsReal **gofArray, Int_t nVal) const =0
pRooRealMPFE * _mpfeArray
! Array of parallel execution frond ends
bool _doOffset
Apply interval value offset to control numeric precision?
RooAbsData * _data
Pointer to original input dataset.
const bool _takeGlobalObservablesFromData
If the global observable values are taken from data.
void setMPSet(Int_t setNum, Int_t numSets)
Set MultiProcessor set number identification of this instance.
bool redirectServersHook(const RooAbsCollection &newServerList, bool mustReplaceAll, bool nameChange, bool isRecursive) override
Forward server redirect calls to component test statistics.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
Multi-processor front-end for parallel calculation of RooAbsReal objects.
Definition RooRealMPFE.h:29
Facilitates simultaneous fitting of multiple PDFs to subsets of a given dataset.
@ BulkPartition
std::string rangeName
Stores the configuration parameters for RooAbsTestStatistic.