Skip to content

Commit

Permalink
Add detailed printing
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Dec 3, 2024
1 parent 9aba876 commit 04b0bd2
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions tools/src/podio-dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ void getParameterOverview(const podio::Frame& frame, std::vector<std::tuple<std:
}

void printFrameOverview(const podio::Frame& frame) {

fmt::print("Collections:\n");
const auto collNames = frame.getAvailableCollections();

Expand All @@ -176,6 +175,27 @@ void printFrameOverview(const podio::Frame& frame) {
printTable(paramRows, {"Name", "Type", "Elements"});
}

template <typename... Args>
void print_flush(fmt::format_string<Args...> fmtstr, Args&&... args) {
fmt::print(fmtstr, std::forward<Args>(args)...);
std::fflush(stdout);
}

void printFrameDetailed(const podio::Frame& frame) {
fmt::print("Collections:\n");
const auto collNames = frame.getAvailableCollections();
for (const auto& name : podio::utils::sortAlphabeticaly(collNames)) {
const auto coll = frame.get(name);
print_flush("{}\n", name);
coll->print();
print_flush("\n");
}

print_flush("\nParameters\n:");
frame.getParameters().print();
print_flush("\n");
}

void printGeneralInfo(const podio::Reader& reader, const std::string& filename) {
fmt::print("input file: {}\n", filename);
fmt::print("datamodel model definitions stored in this file: {}\n\n", reader.getAvailableDatamodels());
Expand All @@ -191,7 +211,7 @@ void printGeneralInfo(const podio::Reader& reader, const std::string& filename)
void printFrame(const podio::Frame& frame, const std::string& category, size_t iEntry, bool detailed) {
fmt::print("{:#^82}\n", fmt::format(" {}: {} ", category, iEntry));
if (detailed) {

printFrameDetailed(frame);
} else {
printFrameOverview(frame);
}
Expand Down

0 comments on commit 04b0bd2

Please sign in to comment.