Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Changed: | ||||||||
< < | -- WilliamBreadenMadden - 2011-08-03 | |||||||
> > | -- WilliamBreadenMadden - 2011-08-10 | |||||||
Line: 189 to 189 | ||||||||
Added: | ||||||||
> > | What's in the RooFit workspace? | |||||||
Line: 221 to 223 | ||||||||
Added: | ||||||||
> > | Visual representations of the model/PDF contentsGraphvizGraphviz consists of a graph description language called the DOT language and a set of tools that can generate and/or process DOT files.Example code: examining PDFs and creating graphical representations of them
Accessing the RooFit workspace | |||||||
Added: | ||||||||
> > | // Alternatively, you could open the file in a manner such as the following: myFileName = "BR5_MSSM_signal90_combined_datastat_model.root" TFile *myFile = TFile::Open(myFileName); | |||||||
// Import the workspace. | ||||||||
Changed: | ||||||||
< < | myWorkspace = (RooWorkspace*) _file0->Get("combined"); | |||||||
> > | RooWorkspace* myWorkspace = (RooWorkspace*) _file0->Get("combined"); | |||||||
// Print the workspace contents. myWorkspace->Print(); // Import the PDF. | ||||||||
Line: 243 to 293 | ||||||||
Added: | ||||||||
> > | Example code: Using both data and PDF from file
| |||||||
RooStatsRooStats provides tools for high-level statistics questions in ROOT. It builds on RooFit, which provides basic building blocks for statistical questions. |