Skip to content

Commit d9c0023

Browse files
hageboeckvepadulano
andcommitted
[NFC] Remove trailing spaces in RInterface.hxx, fix a typo.
Co-authored-by: Vincenzo Eduardo Padulano <[email protected]>
1 parent 2da9953 commit d9c0023

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

tree/dataframe/inc/ROOT/RDF/RInterface.hxx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ public:
882882
/// return an RVec of varied values, one for each variation tag, in the same order as the tags.
883883
/// \param[in] inputColumns the names of the columns to be passed to the callable.
884884
/// \param[in] nVariations number of variations returned by the expression. The corresponding tags will be `"0"`,
885-
/// `"1"`, etc.
885+
/// `"1"`, etc.
886886
/// \param[in] variationName a generic name for this set of varied values, e.g. `"ptvariation"`.
887887
/// colName is used if none is provided.
888888
///
@@ -988,7 +988,7 @@ public:
988988
/// return an RVec of varied values, one for each variation tag, in the same order as the tags.
989989
/// \param[in] inputColumns the names of the columns to be passed to the callable.
990990
/// \param[in] nVariations number of variations returned by the expression. The corresponding tags will be `"0"`,
991-
/// `"1"`, etc.
991+
/// `"1"`, etc.
992992
/// \param[in] variationName a generic name for this set of varied values, e.g. `"ptvariation"`.
993993
/// colName is used if none is provided.
994994
///
@@ -1036,7 +1036,7 @@ public:
10361036
/// \param[in] inputColumns the names of the columns to be passed to the callable.
10371037
/// \param[in] inputColumns the names of the columns to be passed to the callable.
10381038
/// \param[in] nVariations number of variations returned by the expression. The corresponding tags will be `"0"`,
1039-
/// `"1"`, etc.
1039+
/// `"1"`, etc.
10401040
/// \param[in] variationName a generic name for this set of varied values, e.g. `"ptvariation"`.
10411041
/// colName is used if none is provided.
10421042
///
@@ -1091,7 +1091,7 @@ public:
10911091
/// \param[in] expression a string containing valid C++ code that evaluates to an RVec containing the varied
10921092
/// values for the specified column.
10931093
/// \param[in] nVariations number of variations returned by the expression. The corresponding tags will be `"0"`,
1094-
/// `"1"`, etc.
1094+
/// `"1"`, etc.
10951095
/// \param[in] variationName a generic name for this set of varied values, e.g. `"ptvariation"`.
10961096
/// colName is used if none is provided.
10971097
///
@@ -1126,7 +1126,7 @@ public:
11261126
/// \param[in] expression a string containing valid C++ code that evaluates to an RVec or RVecs containing the varied
11271127
/// values for the specified columns.
11281128
/// \param[in] nVariations number of variations returned by the expression. The corresponding tags will be `"0"`,
1129-
/// `"1"`, etc.
1129+
/// `"1"`, etc.
11301130
/// \param[in] variationName a generic name for this set of varied values, e.g. `"ptvariation"`.
11311131
///
11321132
/// This overload adds the possibility for the expression used to evaluate the varied values to be just-in-time
@@ -1163,7 +1163,7 @@ public:
11631163
/// \param[in] expression a string containing valid C++ code that evaluates to an RVec containing the varied
11641164
/// values for the specified column.
11651165
/// \param[in] nVariations number of variations returned by the expression. The corresponding tags will be `"0"`,
1166-
/// `"1"`, etc.
1166+
/// `"1"`, etc.
11671167
/// \param[in] variationName a generic name for this set of varied values, e.g. `"ptvariation"`.
11681168
/// colName is used if none is provided.
11691169
///
@@ -2362,13 +2362,13 @@ public:
23622362
/// auto myGAE2 = myDf.GraphAsymmErrors<f, f, f, f, f, f>("xValues", "yValues", "exl", "exh", "eyl", "eyh");
23632363
/// ~~~
23642364
///
2365-
/// `GraphAssymErrors` should also be used for the cases in which values associated only with
2366-
/// one of the axes have associated errors. For example, only `ey` exist and `ex` are equal to zero.
2367-
/// In such cases, user should do the following:
2365+
/// `GraphAsymmErrors` should also be used for the cases in which values associated only with
2366+
/// one of the axes have associated errors. For example, only `ey` exist and `ex` are equal to zero.
2367+
/// In such cases, user should do the following:
23682368
/// ~~~{.cpp}
23692369
/// // Create a column of zeros in RDataFrame
2370-
/// auto rdf_withzeros = rdf.Define("zero", "0");
2371-
/// // or alternatively:
2370+
/// auto rdf_withzeros = rdf.Define("zero", "0");
2371+
/// // or alternatively:
23722372
/// auto rdf_withzeros = rdf.Define("zero", []() -> double { return 0.;});
23732373
/// // Create the graph with y errors only
23742374
/// auto rdf_errorsOnYOnly = rdf_withzeros.GraphAsymmErrors("xValues", "yValues", "zero", "zero", "eyl", "eyh");

0 commit comments

Comments
 (0)