diff --git a/projects/injection/private/TreeWeighter.cxx b/projects/injection/private/TreeWeighter.cxx index 220548d08..3c1472033 100644 --- a/projects/injection/private/TreeWeighter.cxx +++ b/projects/injection/private/TreeWeighter.cxx @@ -97,7 +97,7 @@ double LeptonTreeWeighter::EventWeight(LI::dataclasses::InteractionTree const & double generation_probability = injectors[idx]->EventsToInject();//GenerationProbability(tree); for(auto const & datum : tree.tree) { std::tuple bounds; - if(datum->depth()==0) { + if(datum->depth() == 0) { bounds = injectors[idx]->PrimaryInjectionBounds(datum->record); physical_probability *= primary_process_weighters[idx]->PhysicalProbability(bounds, datum->record); generation_probability *= primary_process_weighters[idx]->GenerationProbability(*datum);