From 548fe5cd8693fbaec657455c66b0703d26f7137f Mon Sep 17 00:00:00 2001 From: Sakib Rahman Date: Wed, 18 Dec 2024 11:57:02 -0500 Subject: [PATCH] Change name of current campaign file to extract branch sizes from --- benchmarks/output_branch_size_scan/output_branch_size_scan.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/output_branch_size_scan/output_branch_size_scan.sh b/benchmarks/output_branch_size_scan/output_branch_size_scan.sh index c812756b..4c1f908c 100644 --- a/benchmarks/output_branch_size_scan/output_branch_size_scan.sh +++ b/benchmarks/output_branch_size_scan/output_branch_size_scan.sh @@ -1,5 +1,5 @@ #!/bin/bash -root -q -b root://dtn-eic.jlab.org//work/eic2/EPIC/RECO/ -e 'for (auto b : *events->GetListOfLeaves()) { if (events->GetBranch(b->GetName()) == nullptr) continue; cout << events->GetBranch(b->GetName())->GetTotalSize() << " " << b->GetName() << endl; }' | sort -n > branch_size_current.txt +root -q -b eicrecon.tree.edm4eic.root -e 'for (auto b : *events->GetListOfLeaves()) { if (events->GetBranch(b->GetName()) == nullptr) continue; cout << events->GetBranch(b->GetName())->GetTotalSize() << " " << b->GetName() << endl; }' | sort -n > branch_size_current.txt root -q -b root://dtn-eic.jlab.org//work/eic2/EPIC/RECO/ -e 'for (auto b : *events->GetListOfLeaves()) { if (events->GetBranch(b->GetName()) == nullptr) continue; cout << events->GetBranch(b->GetName())->GetTotalSize() << " " << b->GetName() << endl; }' | sort -n > branch_size_default.txt python plot.py -c branch_size_current.txt -d branch_size_default.txt