Skip to content

Commit

Permalink
Fix a few wrong @params (#675)
Browse files Browse the repository at this point in the history
Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
  • Loading branch information
jmcarcell and jmcarcell committed Sep 16, 2024
1 parent 95a8fa5 commit 27c1635
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions include/podio/DataSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@ class DataSource : public ROOT::RDF::RDataSource {
///
/// @brief Setup input for the podio::DataSource.
///
/// @param[in] Number of events.
/// @return void.
/// @param[in] nEvents Number of events.
///
void SetupInput(int nEvents);
};
Expand Down
4 changes: 2 additions & 2 deletions include/podio/Writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Writer {
/// @param frame The Frame to store
/// @param category The category name under which this Frame should be
/// stored
/// @param collsToWrite The collection names that should be written
/// @param collections The collection names that should be written
void writeFrame(const podio::Frame& frame, const std::string& category, const std::vector<std::string>& collections) {
return m_self->writeFrame(frame, category, collections);
}
Expand All @@ -108,7 +108,7 @@ class Writer {
/// This stores only the desired collections and not the complete frame.
///
/// @param frame The Frame to store
/// @param collsToWrite The collection names that should be written
/// @param collections The collection names that should be written
void writeEvent(const podio::Frame& frame, const std::vector<std::string>& collections) {
writeFrame(frame, podio::Category::Event, collections);
}
Expand Down

0 comments on commit 27c1635

Please sign in to comment.