Skip to content
Snippets Groups Projects
Commit b36f7184 authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

modified: benchmarks/barrel_ecal/scripts/e_pi_separation.cxx

parent 0a3cdd31
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !30. Comments created here will be created in the context of that merge request.
...@@ -85,7 +85,7 @@ void e_pi_separation(const char* input_fname = ...@@ -85,7 +85,7 @@ void e_pi_separation(const char* input_fname =
auto total_edep = 0.0; auto total_edep = 0.0;
for (const auto& i: evt) { for (const auto& i: evt) {
fmt::print("cell id {}, layer {}\n",i.cellID, decoder->get(i.cellID, layer_index)); fmt::print("cell id {}, layer {}\n",i.cellID, decoder->get(i.cellID, layer_index));
if( decoder->get(i.cellID, layer_index) < 7 ){ if( decoder->get(i.cellID, layer_index) < 4 ){
total_edep += i.energyDeposit; total_edep += i.energyDeposit;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment