Skip to content

Commit 91fc407

Browse files
committed
[Tutorials] Fix missing \file tag in rf514.
1 parent 1ca0207 commit 91fc407

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tutorials/roofit/rf514_RooCustomizer.C

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/// \file
12
/// \ingroup tutorial_roofit
23
/// \notebook -nodraw
34
///
@@ -62,17 +63,17 @@ void rf514_RooCustomizer() {
6263

6364
// 1. Each sample should have its own mean for the gaussian
6465
// The customiser will make copies of `meanG` for each category.
65-
// The they will all appear in the set `newLeafs`, which will own the new nodes.
66+
// These will all appear in the set `newLeafs`, which will own the new nodes.
6667
RooCustomizer cust(model, sample, newLeafs, &allCustomiserNodes);
6768
cust.splitArg(meanG, sample);
6869

6970

7071
// 2. Each sample should have its own signal yield, but there is an extra complication:
71-
// We need each yields 1 and 2 to be a function of the variable "mass".
72+
// We need the yields 1 and 2 to be a function of the variable "mass".
7273
// For this, we pre-define nodes with exacly the names that the customiser would have created automatically,
7374
// that is, "<nodeName>_<categoryName>", and we register them in the set of customiser nodes.
7475
// The customiser will pick them up instead of creating new ones.
75-
// If we don't provide one (e.g. for "yieldSig_Sample3"), it will be created by cloning `yieldSig`.
76+
// If we don't provide one (e.g. for "yieldSig_Sample3"), it will be created automatically by cloning `yieldSig`.
7677
RooRealVar mass("M", "M", 1, 0, 12000);
7778
RooFormulaVar yield1("yieldSig_Sample1", "Signal yield in the first sample", "M/3.360779", mass);
7879
RooFormulaVar yield2("yieldSig_Sample2", "Signal yield in the second sample", "M/2", mass);

0 commit comments

Comments
 (0)