Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ToyMCSampler.cxx
Go to the documentation of this file.
1// @(#)root/roostats:$Id$
2// Author: Sven Kreiss June 2010
3// Author: Kyle Cranmer, Lorenzo Moneta, Gregory Schott, Wouter Verkerke
4/*************************************************************************
5 * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12/** \class RooStats::NuisanceParametersSampler
13 \ingroup Roostats
14
15Helper class for ToyMCSampler. Handles all of the nuisance parameter related
16functions. Once instantiated, it gives a new nuisance parameter point
17at each call to nextPoint(...).
18*/
19
20/** \class RooStats::ToyMCSampler
21 \ingroup Roostats
22
23ToyMCSampler is an implementation of the TestStatSampler interface.
24It generates Toy Monte Carlo for a given parameter point and evaluates a
25TestStatistic.
26
27For parallel runs, ToyMCSampler can be given an instance of ProofConfig
28and then run in parallel using proof or proof-lite. Internally, it uses
29ToyMCStudy with the RooStudyManager.
30*/
31
33
34#include "RooMsgService.h"
35
36#include "RooDataHist.h"
37
38#include "RooRealVar.h"
39
40#include "TCanvas.h"
41#include "RooPlot.h"
42#include "RooRandom.h"
43
44#include "RooStudyManager.h"
45#include "RooStats/ToyMCStudy.h"
48#include "RooSimultaneous.h"
49#include "RooCategory.h"
50
51#include "TMath.h"
52
53
54using namespace RooFit;
55using namespace std;
56
57
59
60namespace RooStats {
61
62////////////////////////////////////////////////////////////////////////////////
63/// Assigns new nuisance parameter point to members of nuisPoint.
64/// nuisPoint can be more objects than just the nuisance
65/// parameters.
66
67void NuisanceParametersSampler::NextPoint(RooArgSet& nuisPoint, double& weight) {
68
69 // check whether to get new set of nuisanceParPoints
70 if (fIndex >= fNToys) {
71 Refresh();
72 fIndex = 0;
73 }
74
75 // get value
76 nuisPoint.assign(*fPoints->get(fIndex++));
77 weight = fPoints->weight();
78
79 // check whether result will have any influence
80 if(fPoints->weight() == 0.0) {
81 oocoutI(nullptr,Generation) << "Weight 0 encountered. Skipping." << endl;
82 NextPoint(nuisPoint, weight);
83 }
84}
85
86////////////////////////////////////////////////////////////////////////////////
87/// Creates the initial set of nuisance parameter points. It also refills the
88/// set with new parameter points if called repeatedly. This helps with
89/// adaptive sampling as the required number of nuisance parameter points
90/// might increase during the run.
91
93
94 if (!fPrior || !fParams) return;
95
96 if (fExpected) {
97 // UNDER CONSTRUCTION
98 oocoutI(nullptr,InputArguments) << "Using expected nuisance parameters." << endl;
99
100 int nBins = fNToys;
101
102 // From FeldmanCousins.cxx:
103 // set nbins for the POI
104 for (auto *myarg2 : static_range_cast<RooRealVar *>(*fParams)) {
105 myarg2->setBins(nBins);
106 }
107
108
109 fPoints = std::unique_ptr<RooDataSet>{fPrior->generate(
110 *fParams,
111 AllBinned(),
113 NumEvents(1) // for Asimov set, this is only a scale factor
114 )};
115 if(fPoints->numEntries() != fNToys) {
116 fNToys = fPoints->numEntries();
117 oocoutI(nullptr,InputArguments) <<
118 "Adjusted number of toys to number of bins of nuisance parameters: " << fNToys << endl;
119 }
120
121/*
122 // check
123 TCanvas *c1 = new TCanvas;
124 RooPlot *p = dynamic_cast<RooRealVar*>(fParams->first())->frame();
125 fPoints->plotOn(p);
126 p->Draw();
127 for(int x=0; x < fPoints->numEntries(); x++) {
128 fPoints->get(x)->Print("v");
129 cout << fPoints->weight() << endl;
130 }
131*/
132
133 }else{
134 oocoutI(nullptr,InputArguments) << "Using randomized nuisance parameters." << endl;
135
136 fPoints = std::unique_ptr<RooDataSet>{fPrior->generate(*fParams, fNToys)};
137 }
138}
139
141
142////////////////////////////////////////////////////////////////////////////////
143
145
146////////////////////////////////////////////////////////////////////////////////
147/// Proof constructor. Do not use.
148
149ToyMCSampler::ToyMCSampler() : fSamplingDistName("SD"), fNToys(1)
150{
151
152 fPdf = nullptr;
153 fPriorNuisance = nullptr;
154 fNuisancePars = nullptr;
155 fObservables = nullptr;
156 fGlobalObservables = nullptr;
157
158 fSize = 0.05;
159 fNEvents = 0;
160 fGenerateBinned = false;
162 fGenerateAutoBinned = true;
163 fExpectedNuisancePar = false;
164
165 fToysInTails = 0.0;
169
170 fProtoData = nullptr;
171
172 fProofConfig = nullptr;
174
175 //suppress messages for num integration of Roofit
177
178 fUseMultiGen = false ;
179}
180
181////////////////////////////////////////////////////////////////////////////////
182
183ToyMCSampler::ToyMCSampler(TestStatistic &ts, Int_t ntoys) : fSamplingDistName(ts.GetVarName().Data()), fNToys(ntoys)
184{
185 fPdf = nullptr;
186 fPriorNuisance = nullptr;
187 fNuisancePars = nullptr;
188 fObservables = nullptr;
189 fGlobalObservables = nullptr;
190
191 fSize = 0.05;
192 fNEvents = 0;
193 fGenerateBinned = false;
195 fGenerateAutoBinned = true;
196 fExpectedNuisancePar = false;
197
198 fToysInTails = 0.0;
202
203 fProtoData = nullptr;
204
205 fProofConfig = nullptr;
207
208 //suppress messages for num integration of Roofit
210
211 fUseMultiGen = false ;
212
213 AddTestStatistic(&ts);
214}
215
216////////////////////////////////////////////////////////////////////////////////
217
220
221 ClearCache();
222}
223
224////////////////////////////////////////////////////////////////////////////////
225/// only checks, no guessing/determination (do this in calculators,
226/// e.g. using ModelConfig::GuessObsAndNuisance(...))
227
229 bool goodConfig = true;
230
231 if(fTestStatistics.empty() || fTestStatistics[0] == nullptr) { ooccoutE(nullptr,InputArguments) << "Test statistic not set." << endl; goodConfig = false; }
232 if(!fObservables) { ooccoutE(nullptr,InputArguments) << "Observables not set." << endl; goodConfig = false; }
233 if(!fParametersForTestStat) { ooccoutE(nullptr,InputArguments) << "Parameter values used to evaluate the test statistic are not set." << endl; goodConfig = false; }
234 if(!fPdf) { ooccoutE(nullptr,InputArguments) << "Pdf not set." << endl; goodConfig = false; }
235
236 return goodConfig;
237}
238
239////////////////////////////////////////////////////////////////////////////////
240/// Evaluate all test statistics, returning result and any detailed output.
241/// PDF parameter values are saved in case they are modified by
242/// TestStatistic::Evaluate (eg. SimpleLikelihoodRatioTestStat).
243
245 DetailedOutputAggregator detOutAgg;
246 const RooArgList* allTS = EvaluateAllTestStatistics(data, poi, detOutAgg);
247 if (!allTS) return nullptr;
248 // no need to delete allTS, it is deleted in destructor of detOutAgg
249 return dynamic_cast<RooArgList*>(allTS->snapshot());
250}
251
252////////////////////////////////////////////////////////////////////////////////
253
255 std::unique_ptr<RooArgSet> allVars;
256 std::unique_ptr<RooArgSet> saveAll;
257 if(fPdf) {
258 allVars = std::unique_ptr<RooArgSet>{fPdf->getVariables()};
259 }
260 if(allVars) {
261 saveAll = std::make_unique<RooArgSet>();
262 allVars->snapshot(*saveAll);
263 }
264 for( unsigned int i = 0; i < fTestStatistics.size(); i++ ) {
265 if( fTestStatistics[i] == nullptr ) continue;
266 TString name( TString::Format("%s_TS%u", fSamplingDistName.c_str(), i) );
267 RooArgSet parForTS;
268 poi.snapshot(parForTS);
269 RooRealVar ts( name, fTestStatistics[i]->GetVarName(), fTestStatistics[i]->Evaluate( data, parForTS ) );
270 RooArgList tset(ts);
271 detOutAgg.AppendArgSet(&tset);
272 if (const RooArgSet* detOut = fTestStatistics[i]->GetDetailedOutput()) {
273 name.Append("_");
274 detOutAgg.AppendArgSet(detOut, name);
275 }
276 if (saveAll) {
277 // restore values, perhaps modified by fTestStatistics[i]->Evaluate()
278 allVars->assign(*saveAll);
279 }
280 }
281 return detOutAgg.GetAsArgList();
282}
283
284////////////////////////////////////////////////////////////////////////////////
285
287 if(fTestStatistics.size() > 1) {
288 oocoutW(nullptr, InputArguments) << "Multiple test statistics defined, but only one distribution will be returned." << endl;
289 for( unsigned int i=0; i < fTestStatistics.size(); i++ ) {
290 oocoutW(nullptr, InputArguments) << " \t test statistic: " << fTestStatistics[i] << endl;
291 }
292 }
293
294 std::unique_ptr<RooDataSet> r{GetSamplingDistributions(paramPointIn)};
295 if(r == nullptr || r->numEntries() == 0) {
296 oocoutW(nullptr, Generation) << "no sampling distribution generated" << endl;
297 return nullptr;
298 }
299
300 return new SamplingDistribution( r->GetName(), r->GetTitle(), *r );
301}
302
303////////////////////////////////////////////////////////////////////////////////
304/// Use for serial and parallel runs.
305
307{
308
309 // ======= S I N G L E R U N ? =======
310 if(!fProofConfig)
311 return GetSamplingDistributionsSingleWorker(paramPointIn);
312
313 // ======= P A R A L L E L R U N =======
314 if (!CheckConfig()){
315 oocoutE(nullptr, InputArguments)
316 << "Bad COnfiguration in ToyMCSampler "
317 << endl;
318 return nullptr;
319 }
320
321 // turn adaptive sampling off if given
322 if(fToysInTails) {
323 fToysInTails = 0;
324 oocoutW(nullptr, InputArguments)
325 << "Adaptive sampling in ToyMCSampler is not supported for parallel runs."
326 << endl;
327 }
328
329 // adjust number of toys on the slaves to keep the total number of toys constant
330 Int_t totToys = fNToys;
331 fNToys = (int)ceil((double)fNToys / (double)fProofConfig->GetNExperiments()); // round up
332
333 // create the study instance for parallel processing
334 ToyMCStudy* toymcstudy = new ToyMCStudy ;
335 toymcstudy->SetToyMCSampler(*this);
336 toymcstudy->SetParamPoint(paramPointIn);
338
339 // temporary workspace for proof to avoid messing with TRef
341 RooStudyManager studymanager(w, *toymcstudy);
343
344 RooDataSet* output = toymcstudy->merge();
345
346 // reset the number of toys
347 fNToys = totToys;
348
349 delete toymcstudy;
350 return output;
351}
352
353////////////////////////////////////////////////////////////////////////////////
354/// This is the main function for serial runs. It is called automatically
355/// from inside GetSamplingDistribution when no ProofConfig is given.
356/// You should not call this function yourself. This function should
357/// be used by ToyMCStudy on the workers (ie. when you explicitly want
358/// a serial run although ProofConfig is present).
359///
360
362{
363 // Make sure the cache is clear. It is important to clear it here, because
364 // the cache might be invalid even when just the firstPOI was changed, for which
365 // no accessor has to be called. (Fixes a bug when ToyMCSampler is
366 // used with the Neyman Construction)
367 ClearCache();
368
369 if (!CheckConfig()){
370 oocoutE(nullptr, InputArguments)
371 << "Bad COnfiguration in ToyMCSampler "
372 << endl;
373 return nullptr;
374 }
375
376 // important to cache the paramPoint b/c test statistic might
377 // modify it from event to event
378 RooArgSet *paramPoint = (RooArgSet*) paramPointIn.snapshot();
379 std::unique_ptr<RooArgSet> allVars{fPdf->getVariables()};
380 RooArgSet *saveAll = (RooArgSet*) allVars->snapshot();
381
382
383 DetailedOutputAggregator detOutAgg;
384
385 // counts the number of toys in the limits set for adaptive sampling
386 // (taking weights into account; always on first test statistic)
387 double toysInTails = 0.0;
388
389 for (Int_t i = 0; i < fMaxToys; ++i) {
390 // need to check at the beginning for case that zero toys are requested
391 if (toysInTails >= fToysInTails && i+1 > fNToys) break;
392
393 // status update
394 if ( i% 500 == 0 && i>0 ) {
395 oocoutP(nullptr,Generation) << "generated toys: " << i << " / " << fNToys;
396 if (fToysInTails) ooccoutP(nullptr,Generation) << " (tails: " << toysInTails << " / " << fToysInTails << ")" << std::endl;
397 else ooccoutP(nullptr,Generation) << endl;
398 }
399
400 // TODO: change this treatment to keep track of all values so that the threshold
401 // for adaptive sampling is counted for all distributions and not just the
402 // first one.
403 double valueFirst = -999.0, weight = 1.0;
404
405 // set variables to requested parameter point
406 allVars->assign(*saveAll); // important for example for SimpleLikelihoodRatioTestStat
407
408 RooAbsData* toydata = GenerateToyData(*paramPoint, weight);
409 if (i == 0 && !fPdf->canBeExtended() && dynamic_cast<RooSimultaneous*>(fPdf)) {
410 const RooArgSet* toySet = toydata->get();
411 if (std::none_of(toySet->begin(), toySet->end(), [](const RooAbsArg* arg){
412 return dynamic_cast<const RooAbsCategory*>(arg) != nullptr;
413 }))
414 oocoutE(nullptr, Generation) << "ToyMCSampler: Generated toy data didn't contain a category variable, although"
415 " a simultaneous PDF is in use. To generate events for a simultaneous PDF, all components need to be"
416 " extended. Otherwise, the number of events to generate per component cannot be determined." << std::endl;
417 }
418
420
421 const RooArgList* allTS = EvaluateAllTestStatistics(*toydata, *fParametersForTestStat, detOutAgg);
422 if (allTS->getSize() > Int_t(fTestStatistics.size()))
423 detOutAgg.AppendArgSet( fGlobalObservables, "globObs_" );
424 if (RooRealVar* firstTS = dynamic_cast<RooRealVar*>(allTS->first()))
425 valueFirst = firstTS->getVal();
426
427 delete toydata;
428
429 // check for nan
430 if(valueFirst != valueFirst) {
431 oocoutW(nullptr, Generation) << "skip: " << valueFirst << ", " << weight << endl;
432 continue;
433 }
434
435 detOutAgg.CommitSet(weight);
436
437 // adaptive sampling checks
438 if (valueFirst <= fAdaptiveLowLimit || valueFirst >= fAdaptiveHighLimit) {
439 if(weight >= 0.) toysInTails += weight;
440 else toysInTails += 1.;
441 }
442 }
443
444 // clean up
445 allVars->assign(*saveAll);
446 delete saveAll;
447 delete paramPoint;
448
450}
451
452////////////////////////////////////////////////////////////////////////////////
453
455
456
458 ooccoutE(nullptr,InputArguments) << "Global Observables not set." << endl;
459 return;
460 }
461
462
464
465 // generate one set of global observables and assign it
466 // has problem for sim pdfs
467 RooSimultaneous* simPdf = dynamic_cast<RooSimultaneous*>( &pdf );
468 if (!simPdf) {
469 std::unique_ptr<RooDataSet> one{pdf.generate(*fGlobalObservables, 1)};
470
471 const RooArgSet *values = one->get(0);
472 if (!_allVars) {
473 _allVars = std::unique_ptr<RooArgSet>{pdf.getVariables()};
474 }
475 _allVars->assign(*values);
476
477 } else {
478
479 if (_pdfList.empty()) {
480 RooCategory& channelCat = (RooCategory&)simPdf->indexCat();
481 int nCat = channelCat.numTypes();
482 for (int i=0; i < nCat; ++i){
483 channelCat.setIndex(i);
484 RooAbsPdf* pdftmp = simPdf->getPdf(channelCat.getCurrentLabel());
485 assert(pdftmp);
486 std::unique_ptr<RooArgSet> globtmp{pdftmp->getObservables(*fGlobalObservables)};
487 RooAbsPdf::GenSpec* gs = pdftmp->prepareMultiGen(*globtmp, NumEvents(1));
488 _pdfList.push_back(pdftmp);
489 _obsList.emplace_back(std::move(globtmp));
490 _gsList.emplace_back(gs);
491 }
492 }
493
494 // Assign generated values to the observables in _obsList
495 for (unsigned int i = 0; i < _pdfList.size(); ++i) {
496 std::unique_ptr<RooDataSet> tmp( _pdfList[i]->generate(*_gsList[i]) );
497 _obsList[i]->assign(*tmp->get(0));
498 }
499 }
500
501
502 } else {
503
504 // not using multigen for global observables
505 std::unique_ptr<RooDataSet> one{pdf.generateSimGlobal( *fGlobalObservables, 1 )};
506 const RooArgSet *values = one->get(0);
507 std::unique_ptr<RooArgSet> allVars{pdf.getVariables()};
508 allVars->assign(*values);
509
510 }
511}
512
513////////////////////////////////////////////////////////////////////////////////
514/// This method generates a toy data set for the given parameter point taking
515/// global observables into account.
516/// The values of the generated global observables remain in the pdf's variables.
517/// They have to have those values for the subsequent evaluation of the
518/// test statistics.
519
520RooAbsData* ToyMCSampler::GenerateToyData(RooArgSet& paramPoint, double& weight, RooAbsPdf& pdf) const {
521
522 if(!fObservables) {
523 ooccoutE(nullptr,InputArguments) << "Observables not set." << endl;
524 return nullptr;
525 }
526
527 // assign input paramPoint
528 std::unique_ptr<RooArgSet> allVars{fPdf->getVariables()};
529 allVars->assign(paramPoint);
530
531
532 // create nuisance parameter points
536 oocoutI(nullptr,InputArguments) << "Cannot use multigen when nuisance parameters vary for every toy" << endl;
537 }
538
539 // generate global observables
540 RooArgSet observables(*fObservables);
542 observables.remove(*fGlobalObservables);
544 }
545
546 // save values to restore later.
547 // but this must remain after(!) generating global observables
548 const RooArgSet* saveVars = (const RooArgSet*)allVars->snapshot();
549
550 if(fNuisanceParametersSampler) { // use nuisance parameters?
551 // Construct a set of nuisance parameters that has the parameters
552 // in the input paramPoint removed. Therefore, no parameter in
553 // paramPoint is randomized.
554 // Therefore when a parameter is given (should be held fixed),
555 // but is also in the list of nuisance parameters, the parameter
556 // will be held fixed. This is useful for debugging to hold single
557 // parameters fixed although under "normal" circumstances it is
558 // randomized.
559 RooArgSet allVarsMinusParamPoint(*allVars);
560 allVarsMinusParamPoint.remove(paramPoint, false, true); // match by name
561
562 // get nuisance parameter point and weight
563 fNuisanceParametersSampler->NextPoint(allVarsMinusParamPoint, weight);
564
565
566 }else{
567 weight = 1.0;
568 }
569
570 RooAbsData *data = Generate(pdf, observables).release();
571
572 // We generated the data with the randomized nuisance parameter (if hybrid)
573 // but now we are setting the nuisance parameters back to where they were.
574 allVars->assign(*saveVars);
575 delete saveVars;
576
577 return data;
578}
579
580////////////////////////////////////////////////////////////////////////////////
581/// This is the generate function to use in the context of the ToyMCSampler
582/// instead of the standard RooAbsPdf::generate(...).
583/// It takes into account whether the number of events is given explicitly
584/// or whether it should use the expected number of events. It also takes
585/// into account the option to generate a binned data set (*i.e.* RooDataHist).
586
587std::unique_ptr<RooAbsData> ToyMCSampler::Generate(RooAbsPdf &pdf, RooArgSet &observables, const RooDataSet* protoData, int forceEvents) const {
588
589 if(fProtoData) {
590 protoData = fProtoData;
591 forceEvents = protoData->numEntries();
592 }
593
594 std::unique_ptr<RooAbsData> data;
595 int events = forceEvents;
596 if(events == 0) events = fNEvents;
597
598 // cannot use multigen when the nuisance parameters change for every toy
600
601 if (events == 0) {
602 if (pdf.canBeExtended() && pdf.expectedEvents(observables) > 0) {
603 if(fGenerateBinned) {
604 if(protoData) data = std::unique_ptr<RooDataSet>{pdf.generate(observables, AllBinned(), Extended(), ProtoData(*protoData, true, true))};
605 else data = std::unique_ptr<RooDataSet>{pdf.generate(observables, AllBinned(), Extended())};
606 } else {
607 if (protoData) {
608 if (useMultiGen) {
609 if (!_gs2) _gs2.reset( pdf.prepareMultiGen(observables, Extended(), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag), ProtoData(*protoData, true, true)) );
610 data = std::unique_ptr<RooDataSet>{pdf.generate(*_gs2)};
611 } else {
612 data = std::unique_ptr<RooDataSet>{pdf.generate(observables, Extended(), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag), ProtoData(*protoData, true, true))};
613 }
614 } else {
615 if (useMultiGen) {
617 data = std::unique_ptr<RooDataSet>{pdf.generate(*_gs1)};
618 } else {
619 data = std::unique_ptr<RooDataSet>{pdf.generate(observables, Extended(), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag) )};
620 }
621
622 }
623 }
624 } else {
625 oocoutE(nullptr,InputArguments)
626 << "ToyMCSampler: Error : pdf is not extended and number of events per toy is zero"
627 << endl;
628 }
629 } else {
630 if (fGenerateBinned) {
631 if(protoData) data = std::unique_ptr<RooDataSet>{pdf.generate(observables, events, AllBinned(), ProtoData(*protoData, true, true))};
632 else data = std::unique_ptr<RooDataSet>{pdf.generate(observables, events, AllBinned())};
633 } else {
634 if (protoData) {
635 if (useMultiGen) {
636 if (!_gs3) _gs3.reset( pdf.prepareMultiGen(observables, NumEvents(events), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag), ProtoData(*protoData, true, true)) );
637 data = std::unique_ptr<RooDataSet>{pdf.generate(*_gs3)};
638 } else {
639 data = std::unique_ptr<RooDataSet>{pdf.generate(observables, NumEvents(events), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag), ProtoData(*protoData, true, true))};
640 }
641 } else {
642 if (useMultiGen) {
644 data = std::unique_ptr<RooDataSet>{pdf.generate(*_gs4)};
645 } else {
646 data = std::unique_ptr<RooDataSet>{pdf.generate(observables, NumEvents(events), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag))};
647 }
648 }
649 }
650 }
651
652 return data;
653}
654
655////////////////////////////////////////////////////////////////////////////////
656/// Extended interface to append to sampling distribution more samples
657
659 RooArgSet& allParameters,
661 Int_t additionalMC)
662{
663 Int_t tmp = fNToys;
664 fNToys = additionalMC;
665 SamplingDistribution* newSamples = GetSamplingDistribution(allParameters);
666 fNToys = tmp;
667
668 if(last){
669 last->Add(newSamples);
670 delete newSamples;
671 return last;
672 }
673
674 return newSamples;
675}
676
677////////////////////////////////////////////////////////////////////////////////
678/// clear the cache obtained from the pdf used for speeding the toy and global observables generation
679/// needs to be called every time the model pdf (fPdf) changes
680
682 _gs1 = nullptr;
683 _gs2 = nullptr;
684 _gs3 = nullptr;
685 _gs4 = nullptr;
686 _allVars = nullptr;
687
688 // no need to delete the _pdfList since it is managed by the RooSimultaneous object
689 if (!_pdfList.empty()) {
690 _pdfList.clear();
691 _obsList.clear();
692 _gsList.clear();
693 }
694}
695
696} // end namespace RooStats
#define oocoutW(o, a)
#define oocoutE(o, a)
#define oocoutI(o, a)
#define ooccoutP(o, a)
#define oocoutP(o, a)
#define ooccoutE(o, a)
#define ClassImp(name)
Definition Rtypes.h:377
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
char name[80]
Definition TGX11.cxx:110
Common abstract base class for objects that represent a value and a "shape" in RooFit.
Definition RooAbsArg.h:79
RooFit::OwningPtr< RooArgSet > getObservables(const RooArgSet &set, bool valueOnly=true) const
Given a set of possible observables, return the observables that this PDF depends on.
RooFit::OwningPtr< RooArgSet > getVariables(bool stripDisconnected=true) const
Return RooArgSet with all variables (tree leaf nodes of expression tree)
virtual const char * getCurrentLabel() const
Return label string of current state.
Int_t numTypes(const char *=nullptr) const
Return number of types defined (in range named rangeName if rangeName!=nullptr)
virtual bool remove(const RooAbsArg &var, bool silent=false, bool matchByNameOnly=false)
Remove the specified argument from our list.
Storage_t const & get() const
Const access to the underlying stl container.
RooAbsCollection * snapshot(bool deepCopy=true) const
Take a snap shot of current collection contents.
Int_t getSize() const
Return the number of elements in the collection.
const_iterator end() const
void assign(const RooAbsCollection &other) const
Sets the value, cache and constant attribute of any argument in our set that also appears in the othe...
RooAbsArg * first() const
const_iterator begin() const
Abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:57
virtual const RooArgSet * get() const
Definition RooAbsData.h:101
virtual Int_t numEntries() const
Return number of entries in dataset, i.e., count unweighted entries.
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:40
virtual double expectedEvents(const RooArgSet *nset) const
Return expected number of events to be used in calculation of extended likelihood.
bool canBeExtended() const
If true, PDF can provide extended likelihood term.
Definition RooAbsPdf.h:218
GenSpec * prepareMultiGen(const RooArgSet &whatVars, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={})
Prepare GenSpec configuration object for efficient generation of multiple datasets from identical spe...
RooFit::OwningPtr< RooDataSet > generate(const RooArgSet &whatVars, Int_t nEvents, const RooCmdArg &arg1, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={})
See RooAbsPdf::generate(const RooArgSet&,const RooCmdArg&,const RooCmdArg&,const RooCmdArg&,...
Definition RooAbsPdf.h:57
virtual RooFit::OwningPtr< RooDataSet > generateSimGlobal(const RooArgSet &whatVars, Int_t nEvents)
Special generator interface for generation of 'global observables' – for RooStats tools.
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition RooArgList.h:22
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
RooArgSet * snapshot(bool deepCopy=true) const
Use RooAbsCollection::snapshot(), but return as RooArgSet.
Definition RooArgSet.h:178
Object to represent discrete states.
Definition RooCategory.h:28
bool setIndex(Int_t index, bool printError=true) override
Set value by specifying the index code of the desired state.
RooDataSet is a container class to hold unbinned data.
Definition RooDataSet.h:57
static RooMsgService & instance()
Return reference to singleton instance.
StreamConfig & getStream(Int_t id)
static constexpr double infinity()
Return internal infinity representation.
Definition RooNumber.h:25
static TRandom * randomGenerator()
Return a pointer to a singleton random-number generator implementation.
Definition RooRandom.cxx:51
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:37
Facilitates simultaneous fitting of multiple PDFs to subsets of a given dataset.
RooAbsPdf * getPdf(RooStringView catName) const
Return the p.d.f associated with the given index category name.
const RooAbsCategoryLValue & indexCat() const
This class is designed to aid in the construction of RooDataSets and RooArgSets, particularly those n...
void AppendArgSet(const RooAbsCollection *aset, TString prefix="")
For each variable in aset, prepend prefix to its name and add to the internal store.
RooDataSet * GetAsDataSet(TString name, TString title)
Returns all detailed output as a dataset.
void CommitSet(double weight=1.0)
Commit to the result RooDataSet.
Helper class for ToyMCSampler.
void Refresh()
Creates the initial set of nuisance parameter points.
void NextPoint(RooArgSet &nuisPoint, double &weight)
Assigns new nuisance parameter point to members of nuisPoint.
std::unique_ptr< RooAbsData > fPoints
RooWorkspace & GetWorkspace(void) const
returns fWorkspace
Definition ProofConfig.h:94
Int_t GetNExperiments(void) const
return fNExperiments
Definition ProofConfig.h:98
const char * GetHost(void) const
returns fHost
Definition ProofConfig.h:96
bool GetShowGui(void) const
return fShowGui
This class simply holds a sampling distribution of some test statistic.
void Add(const SamplingDistribution *other)
merge two sampling distributions
TestStatistic is an interface class to provide a facility for construction test statistics distributi...
ToyMCSampler is an implementation of the TestStatSampler interface.
const RooArgSet * fGlobalObservables
std::string fSamplingDistName
name of the model
virtual void GenerateGlobalObservables(RooAbsPdf &pdf) const
generate global observables
virtual RooDataSet * GetSamplingDistributionsSingleWorker(RooArgSet &paramPoint)
This is the main function for serial runs.
std::unique_ptr< const RooArgSet > fParametersForTestStat
virtual SamplingDistribution * AppendSamplingDistribution(RooArgSet &allParameters, SamplingDistribution *last, Int_t additionalMC)
Extended interface to append to sampling distribution more samples.
NuisanceParametersSampler * fNuisanceParametersSampler
!
std::unique_ptr< RooAbsPdf::GenSpec > _gs4
! GenSpec #4
const RooArgSet * fObservables
double fToysInTails
minimum no of toys in tails for adaptive sampling (taking weights into account, therefore double) Def...
virtual RooArgList * EvaluateAllTestStatistics(RooAbsData &data, const RooArgSet &poi)
Evaluate all test statistics, returning result and any detailed output.
RooAbsPdf * fPdf
densities, snapshots, and test statistics to reweight to
SamplingDistribution * GetSamplingDistribution(RooArgSet &paramPoint) override
main interface
std::unique_ptr< RooAbsPdf::GenSpec > _gs1
! GenSpec #1
virtual RooDataSet * GetSamplingDistributions(RooArgSet &paramPoint)
Use for serial and parallel runs.
virtual void AddTestStatistic(TestStatistic *t=nullptr)
The pdf can be nullptr in which case the density from SetPdf() is used.
virtual RooAbsData * GenerateToyData(RooArgSet &paramPoint, RooAbsPdf &pdf) const
generates toy data without weight
bool fExpectedNuisancePar
whether to use expectation values for nuisance parameters (ie Asimov data set)
bool fUseMultiGen
Use PrepareMultiGen?
std::unique_ptr< RooAbsPdf::GenSpec > _gs2
! GenSpec #2
const RooArgSet * fNuisancePars
std::unique_ptr< RooAbsPdf::GenSpec > _gs3
! GenSpec #3
std::vector< TestStatistic * > fTestStatistics
Int_t fNEvents
number of events per toy (may be ignored depending on settings)
ToyMCSampler()
Proof constructor. Do not use.
double fAdaptiveLowLimit
tails
std::unique_ptr< RooArgSet > _allVars
!
std::unique_ptr< RooAbsData > Generate(RooAbsPdf &pdf, RooArgSet &observables, const RooDataSet *protoData=nullptr, int forceEvents=0) const
helper for GenerateToyData
static void SetAlwaysUseMultiGen(bool flag)
std::vector< RooAbsPdf * > _pdfList
! We don't own those objects
Int_t fNToys
number of toys to generate
virtual void ClearCache()
helper method for clearing the cache
bool CheckConfig(void)
Checks for sufficient information to do a GetSamplingDistribution(...).
ProofConfig * fProofConfig
!
std::vector< std::unique_ptr< RooArgSet > > _obsList
!
static bool fgAlwaysUseMultiGen
Use PrepareMultiGen always.
double fMaxToys
maximum no of toys (taking weights into account, therefore double)
const RooDataSet * fProtoData
in dev
std::vector< std::unique_ptr< RooAbsPdf::GenSpec > > _gsList
!
RooAbsPdf * fPriorNuisance
prior pdf for nuisance parameters
ToyMCStudy is an implementation of RooAbsStudy for toy Monte Carlo sampling.
Definition ToyMCStudy.h:30
void SetToyMCSampler(ToyMCSampler &t)
Definition ToyMCStudy.h:53
void SetParamPoint(const RooArgSet &paramPoint)
Definition ToyMCStudy.h:54
void SetRandomSeed(unsigned int seed)
Definition ToyMCStudy.h:56
RooDataSet * merge()
RooStudyManager is a utility class to manage studies that consist of repeated applications of generat...
void runProof(Int_t nExperiments, const char *proofHost="", bool showGui=true)
Open PROOF-Lite session.
Persistable container for RooFit projects.
virtual UInt_t Integer(UInt_t imax)
Returns a random integer uniformly distributed on the interval [ 0, imax-1 ].
Definition TRandom.cxx:360
Basic string class.
Definition TString.h:139
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Definition TString.cxx:2356
RooCmdArg Extended(bool flag=true)
RooCmdArg ProtoData(const RooDataSet &protoData, bool randomizeOrder=false, bool resample=false)
RooCmdArg AllBinned()
RooCmdArg AutoBinned(bool flag=true)
RooCmdArg NumEvents(Int_t numEvents)
RooCmdArg GenBinned(const char *tag)
RooCmdArg ExpectedData(bool flag=true)
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
Definition JSONIO.h:26
@ NumIntegration
@ InputArguments
Namespace for the RooStats classes.
Definition Asimov.h:19
void removeTopic(RooFit::MsgTopic oldTopic)
static void output()