Skip to content

Commit

Permalink
REST_OpenInputFile.C updating output when openning dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
jgalan committed Feb 12, 2024
1 parent 5267960 commit 662b7e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion macros/REST_OpenInputFile.C
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ void REST_OpenInputFile(const std::string& fileName) {
printf("\n%s\n", "The dataset is ready. You may now access the dataset using:");
printf("\n%s\n", " - dSet->PrintMetadata()");
printf("%s\n", " - dSet->GetDataFrame().GetColumnNames()");
printf("%s\n", " - dSet->GetTree()->GetEntries()");
printf("%s\n\n", " - dSet->GetTree()->GetEntries()");
printf("%s\n", " - dSet->GetDataFrame().Display(\"\")->Print()");
printf("%s\n\n", " - dSet->GetDataFrame().Display({\"colName1,colName2\"})->Print()");
if (dSet) delete dSet;
dSet = new TRestDataSet();
Expand Down

0 comments on commit 662b7e1

Please sign in to comment.