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 0;
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 std::unique_ptr<RooArgSet> parForTS(poi.snapshot());
268 RooRealVar ts( name, fTestStatistics[i]->GetVarName(), fTestStatistics[i]->Evaluate( data, *parForTS ) );
269 RooArgList tset(ts);
270 detOutAgg.AppendArgSet(&tset);
271 if (const RooArgSet* detOut = fTestStatistics[i]->GetDetailedOutput()) {
272 name.Append("_");
273 detOutAgg.AppendArgSet(detOut, name);
274 }
275 if (saveAll) {
276 // restore values, perhaps modified by fTestStatistics[i]->Evaluate()
277 allVars->assign(*saveAll);
278 }
279 }
280 return detOutAgg.GetAsArgList();
281}
282
283////////////////////////////////////////////////////////////////////////////////
284
286 if(fTestStatistics.size() > 1) {
287 oocoutW(nullptr, InputArguments) << "Multiple test statistics defined, but only one distribution will be returned." << endl;
288 for( unsigned int i=0; i < fTestStatistics.size(); i++ ) {
289 oocoutW(nullptr, InputArguments) << " \t test statistic: " << fTestStatistics[i] << endl;
290 }
291 }
292
293 std::unique_ptr<RooDataSet> r{GetSamplingDistributions(paramPointIn)};
294 if(r == nullptr || r->numEntries() == 0) {
295 oocoutW(nullptr, Generation) << "no sampling distribution generated" << endl;
296 return nullptr;
297 }
298
299 return new SamplingDistribution( r->GetName(), r->GetTitle(), *r );
300}
301
302////////////////////////////////////////////////////////////////////////////////
303/// Use for serial and parallel runs.
304
306{
307
308 // ======= S I N G L E R U N ? =======
309 if(!fProofConfig)
310 return GetSamplingDistributionsSingleWorker(paramPointIn);
311
312 // ======= P A R A L L E L R U N =======
313 if (!CheckConfig()){
314 oocoutE(nullptr, InputArguments)
315 << "Bad COnfiguration in ToyMCSampler "
316 << endl;
317 return nullptr;
318 }
319
320 // turn adaptive sampling off if given
321 if(fToysInTails) {
322 fToysInTails = 0;
323 oocoutW(nullptr, InputArguments)
324 << "Adaptive sampling in ToyMCSampler is not supported for parallel runs."
325 << endl;
326 }
327
328 // adjust number of toys on the slaves to keep the total number of toys constant
329 Int_t totToys = fNToys;
330 fNToys = (int)ceil((double)fNToys / (double)fProofConfig->GetNExperiments()); // round up
331
332 // create the study instance for parallel processing
333 ToyMCStudy* toymcstudy = new ToyMCStudy ;
334 toymcstudy->SetToyMCSampler(*this);
335 toymcstudy->SetParamPoint(paramPointIn);
337
338 // temporary workspace for proof to avoid messing with TRef
340 RooStudyManager studymanager(w, *toymcstudy);
342
343 RooDataSet* output = toymcstudy->merge();
344
345 // reset the number of toys
346 fNToys = totToys;
347
348 delete toymcstudy;
349 return output;
350}
351
352////////////////////////////////////////////////////////////////////////////////
353/// This is the main function for serial runs. It is called automatically
354/// from inside GetSamplingDistribution when no ProofConfig is given.
355/// You should not call this function yourself. This function should
356/// be used by ToyMCStudy on the workers (ie. when you explicitly want
357/// a serial run although ProofConfig is present).
358///
359
361{
362 // Make sure the cache is clear. It is important to clear it here, because
363 // the cache might be invalid even when just the firstPOI was changed, for which
364 // no accessor has to be called. (Fixes a bug when ToyMCSampler is
365 // used with the Neyman Construction)
366 ClearCache();
367
368 if (!CheckConfig()){
369 oocoutE(nullptr, InputArguments)
370 << "Bad COnfiguration in ToyMCSampler "
371 << endl;
372 return nullptr;
373 }
374
375 // important to cache the paramPoint b/c test statistic might
376 // modify it from event to event
377 RooArgSet *paramPoint = (RooArgSet*) paramPointIn.snapshot();
378 std::unique_ptr<RooArgSet> allVars{fPdf->getVariables()};
379 RooArgSet *saveAll = (RooArgSet*) allVars->snapshot();
380
381
382 DetailedOutputAggregator detOutAgg;
383
384 // counts the number of toys in the limits set for adaptive sampling
385 // (taking weights into account; always on first test statistic)
386 double toysInTails = 0.0;
387
388 for (Int_t i = 0; i < fMaxToys; ++i) {
389 // need to check at the beginning for case that zero toys are requested
390 if (toysInTails >= fToysInTails && i+1 > fNToys) break;
391
392 // status update
393 if ( i% 500 == 0 && i>0 ) {
394 oocoutP(nullptr,Generation) << "generated toys: " << i << " / " << fNToys;
395 if (fToysInTails) ooccoutP(nullptr,Generation) << " (tails: " << toysInTails << " / " << fToysInTails << ")" << std::endl;
396 else ooccoutP(nullptr,Generation) << endl;
397 }
398
399 // TODO: change this treatment to keep track of all values so that the threshold
400 // for adaptive sampling is counted for all distributions and not just the
401 // first one.
402 double valueFirst = -999.0, weight = 1.0;
403
404 // set variables to requested parameter point
405 allVars->assign(*saveAll); // important for example for SimpleLikelihoodRatioTestStat
406
407 RooAbsData* toydata = GenerateToyData(*paramPoint, weight);
408 if (i == 0 && !fPdf->canBeExtended() && dynamic_cast<RooSimultaneous*>(fPdf)) {
409 const RooArgSet* toySet = toydata->get();
410 if (std::none_of(toySet->begin(), toySet->end(), [](const RooAbsArg* arg){
411 return dynamic_cast<const RooAbsCategory*>(arg) != nullptr;
412 }))
413 oocoutE(nullptr, Generation) << "ToyMCSampler: Generated toy data didn't contain a category variable, although"
414 " a simultaneous PDF is in use. To generate events for a simultaneous PDF, all components need to be"
415 " extended. Otherwise, the number of events to generate per component cannot be determined." << std::endl;
416 }
417
419
420 const RooArgList* allTS = EvaluateAllTestStatistics(*toydata, *fParametersForTestStat, detOutAgg);
421 if (allTS->getSize() > Int_t(fTestStatistics.size()))
422 detOutAgg.AppendArgSet( fGlobalObservables, "globObs_" );
423 if (RooRealVar* firstTS = dynamic_cast<RooRealVar*>(allTS->first()))
424 valueFirst = firstTS->getVal();
425
426 delete toydata;
427
428 // check for nan
429 if(valueFirst != valueFirst) {
430 oocoutW(nullptr, Generation) << "skip: " << valueFirst << ", " << weight << endl;
431 continue;
432 }
433
434 detOutAgg.CommitSet(weight);
435
436 // adaptive sampling checks
437 if (valueFirst <= fAdaptiveLowLimit || valueFirst >= fAdaptiveHighLimit) {
438 if(weight >= 0.) toysInTails += weight;
439 else toysInTails += 1.;
440 }
441 }
442
443 // clean up
444 allVars->assign(*saveAll);
445 delete saveAll;
446 delete paramPoint;
447
449}
450
451////////////////////////////////////////////////////////////////////////////////
452
454
455
457 ooccoutE(nullptr,InputArguments) << "Global Observables not set." << endl;
458 return;
459 }
460
461
463
464 // generate one set of global observables and assign it
465 // has problem for sim pdfs
466 RooSimultaneous* simPdf = dynamic_cast<RooSimultaneous*>( &pdf );
467 if (!simPdf) {
468 std::unique_ptr<RooDataSet> one{pdf.generate(*fGlobalObservables, 1)};
469
470 const RooArgSet *values = one->get(0);
471 if (!_allVars) {
472 _allVars = std::unique_ptr<RooArgSet>{pdf.getVariables()};
473 }
474 _allVars->assign(*values);
475
476 } else {
477
478 if (_pdfList.empty()) {
479 RooCategory& channelCat = (RooCategory&)simPdf->indexCat();
480 int nCat = channelCat.numTypes();
481 for (int i=0; i < nCat; ++i){
482 channelCat.setIndex(i);
483 RooAbsPdf* pdftmp = simPdf->getPdf(channelCat.getCurrentLabel());
484 assert(pdftmp);
485 std::unique_ptr<RooArgSet> globtmp{pdftmp->getObservables(*fGlobalObservables)};
486 RooAbsPdf::GenSpec* gs = pdftmp->prepareMultiGen(*globtmp, NumEvents(1));
487 _pdfList.push_back(pdftmp);
488 _obsList.emplace_back(std::move(globtmp));
489 _gsList.emplace_back(gs);
490 }
491 }
492
493 // Assign generated values to the observables in _obsList
494 for (unsigned int i = 0; i < _pdfList.size(); ++i) {
495 std::unique_ptr<RooDataSet> tmp( _pdfList[i]->generate(*_gsList[i]) );
496 _obsList[i]->assign(*tmp->get(0));
497 }
498 }
499
500
501 } else {
502
503 // not using multigen for global observables
504 std::unique_ptr<RooDataSet> one{pdf.generateSimGlobal( *fGlobalObservables, 1 )};
505 const RooArgSet *values = one->get(0);
506 std::unique_ptr<RooArgSet> allVars{pdf.getVariables()};
507 allVars->assign(*values);
508
509 }
510}
511
512////////////////////////////////////////////////////////////////////////////////
513/// This method generates a toy data set for the given parameter point taking
514/// global observables into account.
515/// The values of the generated global observables remain in the pdf's variables.
516/// They have to have those values for the subsequent evaluation of the
517/// test statistics.
518
519RooAbsData* ToyMCSampler::GenerateToyData(RooArgSet& paramPoint, double& weight, RooAbsPdf& pdf) const {
520
521 if(!fObservables) {
522 ooccoutE(nullptr,InputArguments) << "Observables not set." << endl;
523 return nullptr;
524 }
525
526 // assign input paramPoint
527 std::unique_ptr<RooArgSet> allVars{fPdf->getVariables()};
528 allVars->assign(paramPoint);
529
530
531 // create nuisance parameter points
535 oocoutI(nullptr,InputArguments) << "Cannot use multigen when nuisance parameters vary for every toy" << endl;
536 }
537
538 // generate global observables
539 RooArgSet observables(*fObservables);
541 observables.remove(*fGlobalObservables);
543 }
544
545 // save values to restore later.
546 // but this must remain after(!) generating global observables
547 const RooArgSet* saveVars = (const RooArgSet*)allVars->snapshot();
548
549 if(fNuisanceParametersSampler) { // use nuisance parameters?
550 // Construct a set of nuisance parameters that has the parameters
551 // in the input paramPoint removed. Therefore, no parameter in
552 // paramPoint is randomized.
553 // Therefore when a parameter is given (should be held fixed),
554 // but is also in the list of nuisance parameters, the parameter
555 // will be held fixed. This is useful for debugging to hold single
556 // parameters fixed although under "normal" circumstances it is
557 // randomized.
558 RooArgSet allVarsMinusParamPoint(*allVars);
559 allVarsMinusParamPoint.remove(paramPoint, false, true); // match by name
560
561 // get nuisance parameter point and weight
562 fNuisanceParametersSampler->NextPoint(allVarsMinusParamPoint, weight);
563
564
565 }else{
566 weight = 1.0;
567 }
568
569 RooAbsData *data = Generate(pdf, observables).release();
570
571 // We generated the data with the randomized nuisance parameter (if hybrid)
572 // but now we are setting the nuisance parameters back to where they were.
573 allVars->assign(*saveVars);
574 delete saveVars;
575
576 return data;
577}
578
579////////////////////////////////////////////////////////////////////////////////
580/// This is the generate function to use in the context of the ToyMCSampler
581/// instead of the standard RooAbsPdf::generate(...).
582/// It takes into account whether the number of events is given explicitly
583/// or whether it should use the expected number of events. It also takes
584/// into account the option to generate a binned data set (*i.e.* RooDataHist).
585
586std::unique_ptr<RooAbsData> ToyMCSampler::Generate(RooAbsPdf &pdf, RooArgSet &observables, const RooDataSet* protoData, int forceEvents) const {
587
588 if(fProtoData) {
589 protoData = fProtoData;
590 forceEvents = protoData->numEntries();
591 }
592
593 std::unique_ptr<RooAbsData> data;
594 int events = forceEvents;
595 if(events == 0) events = fNEvents;
596
597 // cannot use multigen when the nuisance parameters change for every toy
599
600 if (events == 0) {
601 if (pdf.canBeExtended() && pdf.expectedEvents(observables) > 0) {
602 if(fGenerateBinned) {
603 if(protoData) data = std::unique_ptr<RooDataSet>{pdf.generate(observables, AllBinned(), Extended(), ProtoData(*protoData, true, true))};
604 else data = std::unique_ptr<RooDataSet>{pdf.generate(observables, AllBinned(), Extended())};
605 } else {
606 if (protoData) {
607 if (useMultiGen) {
608 if (!_gs2) _gs2.reset( pdf.prepareMultiGen(observables, Extended(), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag), ProtoData(*protoData, true, true)) );
609 data = std::unique_ptr<RooDataSet>{pdf.generate(*_gs2)};
610 } else {
611 data = std::unique_ptr<RooDataSet>{pdf.generate(observables, Extended(), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag), ProtoData(*protoData, true, true))};
612 }
613 } else {
614 if (useMultiGen) {
616 data = std::unique_ptr<RooDataSet>{pdf.generate(*_gs1)};
617 } else {
618 data = std::unique_ptr<RooDataSet>{pdf.generate(observables, Extended(), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag) )};
619 }
620
621 }
622 }
623 } else {
624 oocoutE(nullptr,InputArguments)
625 << "ToyMCSampler: Error : pdf is not extended and number of events per toy is zero"
626 << endl;
627 }
628 } else {
629 if (fGenerateBinned) {
630 if(protoData) data = std::unique_ptr<RooDataSet>{pdf.generate(observables, events, AllBinned(), ProtoData(*protoData, true, true))};
631 else data = std::unique_ptr<RooDataSet>{pdf.generate(observables, events, AllBinned())};
632 } else {
633 if (protoData) {
634 if (useMultiGen) {
635 if (!_gs3) _gs3.reset( pdf.prepareMultiGen(observables, NumEvents(events), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag), ProtoData(*protoData, true, true)) );
636 data = std::unique_ptr<RooDataSet>{pdf.generate(*_gs3)};
637 } else {
638 data = std::unique_ptr<RooDataSet>{pdf.generate(observables, NumEvents(events), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag), ProtoData(*protoData, true, true))};
639 }
640 } else {
641 if (useMultiGen) {
643 data = std::unique_ptr<RooDataSet>{pdf.generate(*_gs4)};
644 } else {
645 data = std::unique_ptr<RooDataSet>{pdf.generate(observables, NumEvents(events), AutoBinned(fGenerateAutoBinned), GenBinned(fGenerateBinnedTag))};
646 }
647 }
648 }
649 }
650
651 return data;
652}
653
654////////////////////////////////////////////////////////////////////////////////
655/// Extended interface to append to sampling distribution more samples
656
658 RooArgSet& allParameters,
660 Int_t additionalMC)
661{
662 Int_t tmp = fNToys;
663 fNToys = additionalMC;
664 SamplingDistribution* newSamples = GetSamplingDistribution(allParameters);
665 fNToys = tmp;
666
667 if(last){
668 last->Add(newSamples);
669 delete newSamples;
670 return last;
671 }
672
673 return newSamples;
674}
675
676////////////////////////////////////////////////////////////////////////////////
677/// clear the cache obtained from the pdf used for speeding the toy and global observables generation
678/// needs to be called every time the model pdf (fPdf) changes
679
681 _gs1 = nullptr;
682 _gs2 = nullptr;
683 _gs3 = nullptr;
684 _gs4 = nullptr;
685 _allVars = nullptr;
686
687 // no need to delete the _pdfList since it is managed by the RooSimultaneous object
688 if (_pdfList.size() > 0) {
689 _pdfList.clear();
690 _obsList.clear();
691 _gsList.clear();
692 }
693}
694
695} // 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
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:74
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 expresssion 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
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:59
virtual const RooArgSet * get() const
Definition RooAbsData.h:103
virtual Int_t numEntries() const
Return number of entries in dataset, i.e., count unweighted entries.
GenSpec * prepareMultiGen(const RooArgSet &whatVars, const RooCmdArg &arg1=RooCmdArg::none(), const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none())
Prepare GenSpec configuration object for efficient generation of multiple datasets from identical spe...
virtual double expectedEvents(const RooArgSet *nset) const
Return expected number of events to be used in calculation of extended likelihood.
RooFit::OwningPtr< RooDataSet > generate(const RooArgSet &whatVars, Int_t nEvents, const RooCmdArg &arg1, const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none())
See RooAbsPdf::generate(const RooArgSet&,const RooCmdArg&,const RooCmdArg&,const RooCmdArg&,...
Definition RooAbsPdf.h:60
bool canBeExtended() const
If true, PDF can provide extended likelihood term.
Definition RooAbsPdf.h:278
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
RooCategory is an 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:24
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:40
RooSimultaneous 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:55
void SetParamPoint(const RooArgSet &paramPoint)
Definition ToyMCStudy.h:56
void SetRandomSeed(unsigned int seed)
Definition ToyMCStudy.h:58
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.
The RooWorkspace is a 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 Common.h:18
@ NumIntegration
@ InputArguments
Namespace for the RooStats classes.
Definition Asimov.h:19
void removeTopic(RooFit::MsgTopic oldTopic)
static void output()