Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
HLFactory.cxx
Go to the documentation of this file.
1// @(#)root/roostats:$Id$
2// Author: Danilo Piparo 25/08/2009
3
4
5/*************************************************************************
6 * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
7 * All rights reserved. *
8 * *
9 * For the licensing terms see $ROOTSYS/LICENSE. *
10 * For the list of contributors see $ROOTSYS/README/CREDITS. *
11 *************************************************************************/
12
13////////////////////////////////////////////////////////////////////////////////
14
15
16#include <iostream>
17#include <fstream>
18
19#include "RooStats/HLFactory.h"
20#include "TFile.h"
21#include "TObject.h"
22#include "TObjArray.h"
23#include "TObjString.h"
24
25#include "RooSimultaneous.h"
26
27/** \class RooStats::HLFactory
28 \ingroup Roostats
29
30HLFactory is an High Level model Factory allows you to
31describe your models in a configuration file
32(_datacards_) acting as an interface with the RooFactoryWSTool.
33Moreover it provides tools for the combination of models and datasets.
34
35*/
36
37using namespace std;
38
40
41
42using namespace RooStats;
43using namespace RooFit;
44
45////////////////////////////////////////////////////////////////////////////////
46/// Constructor with the name of the config file to interpret and the
47/// verbosity flag. The extension for the config files is assumed to
48/// be ".rs".
49
51 const char *fileName,
52 bool isVerbose):
54 fComboCat(nullptr),
55 fComboBkgPdf(nullptr),
56 fComboSigBkgPdf(nullptr),
57 fComboDataset(nullptr),
58 fCombinationDone(false),
59 fVerbose(isVerbose),
60 fInclusionLevel(0),
61 fOwnWs(true){
62 TString wsName(name);
63 wsName+="_ws";
64 fWs = new RooWorkspace(wsName,true);
65
69
70 // Start the parsing
71 fReadFile(fileName);
72}
73
74////////////////////////////////////////////////////////////////////////////////
75/// Constructor without a card but with an external workspace.
76
78 RooWorkspace* externalWs,
79 bool isVerbose):
81 fComboCat(nullptr),
82 fComboBkgPdf(nullptr),
83 fComboSigBkgPdf(nullptr),
84 fComboDataset(nullptr),
85 fCombinationDone(false),
86 fVerbose(isVerbose),
87 fInclusionLevel(0),
88 fOwnWs(false){
89 fWs=externalWs;
93
94}
95
96////////////////////////////////////////////////////////////////////////////////
97
99 TNamed("hlfactory","hlfactory"),
100 fComboCat(nullptr),
101 fComboBkgPdf(nullptr),
102 fComboSigBkgPdf(nullptr),
103 fComboDataset(nullptr),
104 fCombinationDone(false),
105 fVerbose(false),
106 fInclusionLevel(0),
107 fOwnWs(true){
108 fWs = new RooWorkspace("hlfactory_ws",true);
109
113
114 }
115
116////////////////////////////////////////////////////////////////////////////////
117/// destructor
118
120 if (fComboSigBkgPdf!=nullptr)
121 delete fComboSigBkgPdf;
122 if (fComboBkgPdf!=nullptr)
123 delete fComboBkgPdf;
124 if (fComboDataset!=nullptr)
125 delete fComboDataset;
126 if (fComboCat!=nullptr)
127 delete fComboCat;
128
129 if (fOwnWs)
130 delete fWs;
131}
132
133////////////////////////////////////////////////////////////////////////////////
134/// Add a channel to the combination. The channel can be specified as:
135/// - A signal plus background pdf
136/// - A background only pdf
137/// - A dataset
138/// Once the combination of the pdfs is done, no more channels should be
139/// added.
140
141int HLFactory::AddChannel(const char* label,
142 const char* SigBkgPdfName,
143 const char* BkgPdfName,
144 const char* DatasetName){
145 if (fCombinationDone){
146 std::cerr << "Cannot add anymore channels. "
147 << "Combination already carried out.\n";
148 return -1;
149 }
150
151 if (SigBkgPdfName!=nullptr){
152 if (fWs->pdf(SigBkgPdfName)==nullptr){
153 std::cerr << "Pdf " << SigBkgPdfName << " not found in workspace!\n";
154 return -1;
155 }
156 TObjString* name = new TObjString(SigBkgPdfName);
158 }
159
160 if (BkgPdfName!=nullptr){
161 if (fWs->pdf(BkgPdfName)==nullptr){
162 std::cerr << "Pdf " << BkgPdfName << " not found in workspace!\n";
163 return -1;
164 }
165 TObjString* name = new TObjString(BkgPdfName);
167 }
168
169 if (DatasetName!=nullptr){
170 if (fWs->data(DatasetName)==nullptr){
171 std::cerr << "Dataset " << DatasetName << " not found in workspace!\n";
172 return -1;
173 }
174 TObjString* name = new TObjString(DatasetName);
176 }
177
178 if (label!=nullptr){
179 TObjString* name = new TObjString(label);
181 }
182 return 0;
183
184}
185
186////////////////////////////////////////////////////////////////////////////////
187/// Return the combination of the signal plus background channels.
188/// The factory owns the object.
189
191 if (fSigBkgPdfNames.GetSize()==0)
192 return nullptr;
193
194 if (fComboSigBkgPdf!=nullptr)
195 return fComboSigBkgPdf;
196
198 return nullptr;
199
200 if (fSigBkgPdfNames.GetSize()==1){
202 return fComboSigBkgPdf;
203 }
204
205 if (!fCombinationDone)
207
208 RooArgList pdfs("pdfs");
209
210 for(auto * ostring : static_range_cast<TObjString*>(fSigBkgPdfNames)) {
211 pdfs.add( *(fWs->pdf(ostring->String().Data())) );
212 }
213
214 std::string name(GetName());
215 name+="_sigbkg";
216
217 std::string title(GetName());
218 title+="_sigbkg";
219
221 new RooSimultaneous(name.c_str(),
222 title.c_str(),
223 pdfs,
224 *fComboCat);
225
226 return fComboSigBkgPdf;
227
228}
229
230////////////////////////////////////////////////////////////////////////////////
231/// Return the combination of the background only channels.
232/// If no background channel is specified a nullptr pointer is returned.
233/// The factory owns the object.
234
236 if (fBkgPdfNames.GetSize()==0)
237 return nullptr;
238
239 if (fComboBkgPdf!=nullptr)
240 return fComboBkgPdf;
241
243 return nullptr;
244
245 if (fBkgPdfNames.GetSize()==1){
246 fComboBkgPdf=fWs->pdf(static_cast<TObjString*>(fBkgPdfNames.First())->String().Data());
247 return fComboBkgPdf;
248 }
249
250 if (!fCombinationDone)
252
253 RooArgList pdfs("pdfs");
254
255 for(auto * ostring : static_range_cast<TObjString*>(fBkgPdfNames)) {
256 pdfs.add( *fWs->pdf(ostring->String().Data()) );
257 }
258
260 name+="_bkg";
261
262 TString title(GetName());
263 title+="_bkg";
264
267 title,
268 pdfs,
269 *fComboCat);
270
271 return fComboBkgPdf;
272
273}
274
275////////////////////////////////////////////////////////////////////////////////
276/// Return the combination of the datasets.
277/// If no dataset is specified a nullptr pointer is returned.
278/// The factory owns the object.
279
281 if (fDatasetsNames.GetSize()==0)
282 return nullptr;
283
284 if (fComboDataset!=nullptr)
285 return fComboDataset;
286
288 return nullptr;
289
290 if (fDatasetsNames.GetSize()==1){
292 return fComboDataset;
293 }
294
295 if (!fCombinationDone)
297
298
299 auto it = fDatasetsNames.begin();
300 TObjString* ostring;
301 ostring = static_cast<TObjString*>(*it);
302 ++it;
303 fComboDataset = (RooDataSet*) fWs->data(ostring->String().Data()) ;
304 if (!fComboDataset) return nullptr;
306 TString dataname(GetName());
307 fComboDataset = new RooDataSet(*fComboDataset,dataname+"_TotData");
308 int catindex=0;
309 fComboCat->setIndex(catindex);
311 for(; it != fDatasetsNames.end() ; ++it) {
312 ostring = static_cast<TObjString*>(*it);
313 catindex++;
314 RooDataSet * data = (RooDataSet*)fWs->data(ostring->String().Data());
315 if (!data) return nullptr;
316 RooDataSet* dummy = new RooDataSet(*data,"");
317 fComboCat->setIndex(catindex);
318 fComboCat->Print();
319 dummy->addColumn(*fComboCat);
320 fComboDataset->append(*dummy);
321 delete dummy;
322 }
323
324 return fComboDataset;
325
326}
327
328////////////////////////////////////////////////////////////////////////////////
329/// Return the category.
330/// The factory owns the object.
331
333 if (fComboCat!=nullptr)
334 return fComboCat;
335
337 return nullptr;
338
339 if (!fCombinationDone)
341
342 return fComboCat;
343
344 }
345
346////////////////////////////////////////////////////////////////////////////////
347/// Process an additional configuration file
348
350 return fReadFile(filename,false);
351}
352
353////////////////////////////////////////////////////////////////////////////////
354/// Parses the configuration file. The objects can be specified following
355/// the rules of the RooFactoryWSTool, plus some more flexibility.
356///
357/// The official format for the datacards is ".rs".
358///
359/// All the instructions end with a ";" (like in C++).
360///
361/// Carriage returns and white lines are irrelevant but advised since they
362/// improve readability (like in C++).
363///
364/// The `(Roo)ClassName::objname(description)` can be replaced with the more
365/// "pythonic" `objname = (Roo)ClassName(description)`.
366///
367/// The comments can be specified with a "//" if on a single line or with
368/// "multiple lines" in C/C++ like comments.
369///
370/// The `"#include path/to/file.rs"` statement triggers the inclusion of a
371/// configuration fragment.
372///
373/// The `"import myobject:myworkspace:myrootfile"` will add to the Workspace
374/// the object myobject located in myworkspace recorded in myrootfile.
375/// Alternatively, one could choose the `"import myobject:myrootfile"` in case
376/// no Workspace is present.
377///
378/// The `"echo"` statement prompts a message on screen.
379
380int HLFactory::fReadFile(const char*fileName, bool is_included){
381 // Check the deepness of the inclusion
382 if (is_included)
384 else
386
387 const int maxDeepness=50;
388 if (fInclusionLevel>maxDeepness){
389 TString warning("The inclusion stack is deeper than ");
390 warning+=maxDeepness;
391 warning+=". Is this a recursive inclusion?";
392 Warning("fReadFile", "%s", warning.Data());
393 }
394
395
396 // open the config file and go through it
397 std::ifstream ifile(fileName);
398
399 if(ifile.fail()){
400 TString error("File ");
401 error+=fileName;
402 error+=" could not be opened.";
403 Error("fReadFile", "%s", error.Data());
404 return -1;
405 }
406
407 TString ifileContent("");
408 ifileContent.ReadFile(ifile);
409 ifile.close();
410
411 // Tokenise the file using the "\n" char and parse it line by line to strip
412 // the comments.
413 TString ifileContentStripped("");
414
415 std::unique_ptr<TObjArray> lines_array{ifileContent.Tokenize("\n")};
416
417 bool in_comment=false;
418
419 // Start iteration on lines array
420 for(TObject * line_o : *lines_array) {
421 TString line = (static_cast<TObjString*>(line_o))->GetString();
422
423 // Are we in a multiline comment?
424 if (in_comment)
425 if (line.EndsWith("*/")){
426 in_comment=false;
427 if (fVerbose) Info("fReadFile","Out of multiline comment ...");
428
429 continue;
430 }
431
432 // Was line a single line comment?
433
434 if ((line.BeginsWith("/*") && line.EndsWith("*/")) ||
435 line.BeginsWith("//")){
436 if (fVerbose) Info("fReadFile","In single line comment ...");
437 continue;
438 }
439
440 // Did a multiline comment just begin?
441 if (line.BeginsWith("/*")){
442 in_comment=true;
443 if (fVerbose) Info("fReadFile","In multiline comment ...");
444 continue;
445 }
446
447 ifileContentStripped+=line+"\n";
448 }
449
450 // Now proceed with the parsing of the stripped file
451
452 lines_array.reset(ifileContentStripped.Tokenize(";"));
453 in_comment=false;
454
455 const int nNeutrals=2;
456 TString neutrals[nNeutrals]={"\t"," "};
457
458 for(TObject * line_o : *lines_array) {
459
460 TString line = (static_cast<TObjString*>(line_o))->GetString();
461
462 // Strip spaces at the beginning and the end of the line
463 line.Strip(TString::kBoth,' ');
464
465 // Put the single statement in one single line
466 line.ReplaceAll("\n","");
467
468 // Do we have an echo statement? "A la RooFit"
469 if (line.BeginsWith("echo")){
470 line = line(5,line.Length()-1);
471 if (fVerbose)
472 std::cout << "Echoing line " << line.Data() << std::endl;
473 std::cout << "[" << GetName() << "] echo: "
474 << line.Data() << std::endl;
475 continue;
476 }
477
478 // Spaces and tabs at this point are not needed.
479 for (int i=0;i<nNeutrals;++i)
480 line.ReplaceAll(neutrals[i],"");
481
482
483 if (fVerbose) Info("fReadFile","Reading --> %s <--", line.Data());
484
485 // Was line a white space?
486 if (line == ""){
487 if (fVerbose) Info("fReadFile", "%s", "Empty line: skipping ...");
488 continue;
489 }
490
491 // Do we have an include statement?
492 // We treat this recursively.
493 if (line.BeginsWith("#include")){
494 line.ReplaceAll("#include","");
495 if (fVerbose) Info("fReadFile","Reading included file...");
496 fReadFile(line,true);
497 continue;
498 }
499
500 // We parse the line
501 if (fVerbose) Info("fReadFile","Parsing the line...");
503 }
504
505 return 0;
506}
507
508
509////////////////////////////////////////////////////////////////////////////////
510/// Builds the category necessary for the mutidimensional models. Its name
511/// will be `<HLFactory name>_category` and the types are specified by the
512/// model labels.
513
515 fCombinationDone=true;
516
518 name+="_category";
519
520 TString title(GetName());
521 title+="_category";
522
523 fComboCat=new RooCategory(name,title);
524
525 for (auto * ostring : static_range_cast<TObjString*>(fLabelsNames)) {
526 fComboCat->defineType(ostring->String());
527 }
528
529 }
530
531////////////////////////////////////////////////////////////////////////////////
532/// Check the number of entries in each list. If not the same and the list
533/// is not empty prompt an error.
534
539 return true;
540 else{
541 std::cerr << "The number of datasets and models added as channels "
542 << " is not the same!\n";
543 return false;
544 }
545 }
546
547////////////////////////////////////////////////////////////////////////////////
548/// Parse a single line and puts the content in the RooWorkSpace
549
551 if (fVerbose) Info("fParseLine", "Parsing line: %s", line.Data());
552
553 TString new_line("");
554
555 const int nequals = line.CountChar('=');
556
557 // Build with the factory a var or cat, or pipe the command directly.
558
559 if (line.Contains("::") || // It is a ordinary statement
560 nequals==0 || //it is a RooRealVar or cat with 0,1,2,3.. indexes
561 (line.Contains("[") &&
562 line.Contains("]") &&
563 nequals>0 && // It is a cat like "tag[B0=1,B0bar=-1]"
564 ! line.Contains("(") &&
565 ! line.Contains(")"))) {
566 fWs->factory(line.Data());
567 return 0;
568 }
569
570 // Transform the line o_name = o_class(o_descr) in o_class::o_name(o_descr)
571 if (nequals==1 ||
572 (nequals > 1 && line.Contains("SIMUL"))){
573
574 // Divide the line in 3 components: o_name,o_class and o_descr
575 // assuming that o_name=o_class(o_descr)
576 const int equal_index=line.First('=');
577 const int par_index=line.First('(');
578 TString o_name(line(0,equal_index));
579 TString o_class(line(equal_index+1,par_index-equal_index-1));
580 TString o_descr(line(par_index+1,line.Length()-par_index-2));
581
582 if (fVerbose) Info("fParseLine", "o_name=%s o_class=%s o_descr=%s",
583 o_name.Data(), o_class.Data(), o_descr.Data());
584
585 // Now two cases either we wanna produce an object or import something
586 // under a new name.
587 if (o_class =="import"){// import a generic TObject into the WS
588 // Now see if we have a workspace or not, according to the number of
589 // entries in the description..
590
591 TObjArray* descr_array = o_descr.Tokenize(",");
592
593 const int n_descr_parts=descr_array->GetEntries();
594
595 if (n_descr_parts<2 || n_descr_parts>3)
596 Error("fParseLine","Import wrong syntax: cannot process %s", o_descr.Data());
597
598 TString obj_name (static_cast<TObjString*>(descr_array->At(n_descr_parts-1))->GetString());
599 TString ws_name("");
600 TString rootfile_name (static_cast<TObjString*>(descr_array->At(0))->GetString());
601
602 std::unique_ptr<TFile> ifile{TFile::Open(rootfile_name)};
603 if (ifile==nullptr)
604 return 1;
605
606 if (n_descr_parts==3){// in presence of a Ws
607 o_descr.ReplaceAll(",",":");
608 fWs->import(o_descr);
609 }
610 else if(n_descr_parts==2){ // in presence of an object in rootfile
611 if (fVerbose)
612 Info("fParseLine","Importing %s from %s under the name of %s",
613 obj_name.Data(), rootfile_name.Data(), o_name.Data());
614 TObject* the_obj=ifile->Get(obj_name);
615 fWs->import(*the_obj,o_name);
616 }
617 return 0;
618 } // end of import block
619
620 new_line=o_class+"::"+o_name+"("+o_descr+")";
621
622 if (fVerbose){
623 std::cout << "DEBUG: line: " << line.Data() << std::endl;
624 std::cout << "DEBUG: new_line: " << new_line.Data() << std::endl;
625 }
626
627 fWs->factory(new_line.Data());
628
629 return 0;
630 }
631
632 else { // In case we do not know what to do we pipe it..
633 fWs->factory(line.Data());
634 }
635
636 return 0;
637
638}
#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 Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char filename
char name[80]
Definition TGX11.cxx:110
void Print(Option_t *options=nullptr) const override
Print the object to the defaultPrintStream().
Definition RooAbsArg.h:322
virtual bool add(const RooAbsArg &var, bool silent=false)
Add the specified argument to list.
void Print(Option_t *options=nullptr) const override
This method must be overridden when a class wants to print itself.
Definition RooAbsData.h:225
Abstract interface for all probability density functions.
Definition RooAbsPdf.h:40
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition RooArgList.h:22
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.
bool defineType(const std::string &label)
Define a state with given name.
RooDataSet is a container class to hold unbinned data.
Definition RooDataSet.h:57
virtual RooAbsArg * addColumn(RooAbsArg &var, bool adjustRange=true)
Add a column with the values of the given (function) argument to this dataset.
void append(RooDataSet &data)
Add all data points of given data set to this data set.
Facilitates simultaneous fitting of multiple PDFs to subsets of a given dataset.
HLFactory is an High Level model Factory allows you to describe your models in a configuration file (...
Definition HLFactory.h:29
TList fSigBkgPdfNames
List of channels names to combine for the signal plus background pdfs.
Definition HLFactory.h:101
RooWorkspace * fWs
The RooWorkspace containing the models and variables.
Definition HLFactory.h:119
TList fBkgPdfNames
List of channels names to combine for the background pdfs.
Definition HLFactory.h:104
int fInclusionLevel
Keep trace of the inclusion deepness.
Definition HLFactory.h:116
RooAbsPdf * fComboBkgPdf
The background model combination.
Definition HLFactory.h:83
TList fLabelsNames
List of channels names to combine for the datasets.
Definition HLFactory.h:110
RooDataSet * GetTotDataSet()
Get the combined dataset.
int fParseLine(TString &line)
Parse a single line an puts the content in the RooWorkSpace.
HLFactory()
Default Constructor.
Definition HLFactory.cxx:98
RooCategory * fComboCat
The category of the combination.
Definition HLFactory.h:80
RooDataSet * fComboDataset
The datasets combination.
Definition HLFactory.h:89
TList fDatasetsNames
List of channels names to combine for the datasets.
Definition HLFactory.h:107
RooAbsPdf * GetTotBkgPdf()
Get the combined background pdf.
RooAbsPdf * fComboSigBkgPdf
The signal plus background model combination.
Definition HLFactory.h:86
bool fNamesListsConsistent()
Check the length of the lists.
bool fCombinationDone
Flag to keep trace of the status of the combination.
Definition HLFactory.h:92
RooAbsPdf * GetTotSigBkgPdf()
Get the combined signal plus background pdf.
int AddChannel(const char *label, const char *SigBkgPdfName, const char *BkgPdfName=nullptr, const char *datasetName=nullptr)
Add channel for the combination.
int ProcessCard(const char *filename)
Process a configuration file.
RooCategory * GetTotCategory()
Get the combined dataset.
bool fOwnWs
Owns workspace.
Definition HLFactory.h:122
~HLFactory() override
Default Destructor.
void fCreateCategory()
Create the category for the combinations.
bool fVerbose
The verbosity flag.
Definition HLFactory.h:113
int fReadFile(const char *fileName, bool is_included=false)
Read the actual cfg file.
Persistable container for RooFit projects.
RooAbsPdf * pdf(RooStringView name) const
Retrieve p.d.f (RooAbsPdf) with given name. A null pointer is returned if not found.
bool import(const RooAbsArg &arg, const RooCmdArg &arg1={}, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}, const RooCmdArg &arg9={})
Import a RooAbsArg object, e.g.
RooFactoryWSTool & factory()
Return instance to factory tool.
RooAbsData * data(RooStringView name) const
Retrieve dataset (binned or unbinned) with given name. A null pointer is returned if not found.
TIter end() const
TIter begin() const
virtual Int_t GetEntries() const
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
virtual Int_t GetSize() const
Return the capacity of the collection, i.e.
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Create / open a file.
Definition TFile.cxx:4075
void Add(TObject *obj) override
Definition TList.h:81
TObject * First() const override
Return the first object in the list. Returns 0 when list is empty.
Definition TList.cxx:659
TObject * At(Int_t idx) const override
Returns the object at position idx. Returns 0 if idx is out of range.
Definition TList.cxx:357
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
const char * GetName() const override
Returns name of object.
Definition TNamed.h:47
An array of TObjects.
Definition TObjArray.h:31
Int_t GetEntries() const override
Return the number of objects in array (i.e.
TObject * At(Int_t idx) const override
Definition TObjArray.h:164
Collectable string class.
Definition TObjString.h:28
const TString & GetString() const
Definition TObjString.h:46
TString & String()
Definition TObjString.h:48
Mother of all ROOT objects.
Definition TObject.h:41
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
Definition TObject.cxx:973
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition TObject.cxx:987
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Definition TObject.cxx:961
Basic string class.
Definition TString.h:139
const char * Data() const
Definition TString.h:380
TString & ReplaceAll(const TString &s1, const TString &s2)
Definition TString.h:704
@ kBoth
Definition TString.h:278
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
Definition TString.cxx:2242
std::istream & ReadFile(std::istream &str)
Replace string with the contents of strm, stopping at an EOF.
Definition Stringio.cxx:28
TLine * line
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
Definition JSONIO.h:26
Namespace for the RooStats classes.
Definition Asimov.h:19