Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix a few wrong @params #675

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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