Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cdcfb92

Browse files
committedMar 11, 2025·
[ntuple] Rename fieldNames to joinFieldNames
1 parent 2497dca commit cdcfb92

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎tree/ntuple/v7/inc/ROOT/RNTupleJoinTable.hxx

+4-4
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ private:
132132
/////////////////////////////////////////////////////////////////////////////
133133
/// \brief Create an a new RNTupleJoinTable for the RNTuple represented by the provided page source.
134134
///
135-
/// \param[in] fieldNames The names of the join fields to use for the join table. Only integral-type fields are
135+
/// \param[in] joinFieldNames The names of the join fields to use for the join table. Only integral-type fields are
136136
/// allowed.
137-
RNTupleJoinTable(const std::vector<std::string> &fieldNames) : fJoinFieldNames(fieldNames) {}
137+
RNTupleJoinTable(const std::vector<std::string> &joinFieldNames) : fJoinFieldNames(joinFieldNames) {}
138138

139139
/////////////////////////////////////////////////////////////////////////////
140140
/// \brief Get all entry mappings in the join table.
@@ -154,11 +154,11 @@ public:
154154
/////////////////////////////////////////////////////////////////////////////
155155
/// \brief Create an RNTupleJoinTable from an existing RNTuple.
156156
///
157-
/// \param[in] fieldNames The names of the join fields to use for the join table. Only integral-type fields are
157+
/// \param[in] joinFieldNames The names of the join fields to use for the join table. Only integral-type fields are
158158
/// allowed.
159159
///
160160
/// \return A pointer to the newly-created join table.
161-
static std::unique_ptr<RNTupleJoinTable> Create(const std::vector<std::string> &fieldNames);
161+
static std::unique_ptr<RNTupleJoinTable> Create(const std::vector<std::string> &joinFieldNames);
162162

163163
/////////////////////////////////////////////////////////////////////////////
164164
/// \brief Add an entry mapping to the join table.

0 commit comments

Comments
 (0)
Please sign in to comment.