This shows you the differences between two versions of the page.
| Next revision | Previous revisionLast revisionBoth sides next revision | ||
| root:controloutputroofit [2012/01/09 15:30] – created decianm | root:controloutputroofit [2012/02/22 11:42] – decianm | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| RooMsgService:: | RooMsgService:: | ||
| </ | </ | ||
| - | This will tell you which streams exist and what they comprise. | + | This will tell you which streams exist and what they comprise. Note that error messages can appear in several strings at once. |
| You can then access the stream and remove a certain topic: | You can then access the stream and remove a certain topic: | ||
| <code C> | <code C> | ||
| Line 30: | Line 30: | ||
| RooFit:: | RooFit:: | ||
| </ | </ | ||
| + | |||
| + | ===== Switching the MIGRAD output off ===== | ||
| + | The above commands don't switch the MIGRAD output off, that goes to stdout after every fit. In order to do this, do: | ||
| + | < | ||
| + | RooFitResult* rForward = forward.fitTo( *forwardBS, RooFit:: | ||
| + | </ | ||
| + | which will make your fit silent. | ||
| + | |||