Skip to content

Commit a0bd868

Browse files
committed
Please consider the following formatting changes
1 parent 64f6f89 commit a0bd868

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

PWGJE/Tasks/jetD0AngSubstructure.cxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ struct JetD0AngSubstructure {
142142
{
143143
angularity = 0.0;
144144
for (auto& constituent : jet.template tracks_as<U>()) {
145-
angularity += std::pow(constituent.pt(), kappa) * std::pow(jetutilities::deltaR(jet, constituent)/(jet.r() / 100.f), alpha);
145+
angularity += std::pow(constituent.pt(), kappa) * std::pow(jetutilities::deltaR(jet, constituent) / (jet.r() / 100.f), alpha);
146146
}
147147
angularity /= std::pow(jet.pt(), kappa);
148148
}
@@ -206,4 +206,3 @@ struct JetD0AngSubstructure {
206206
};
207207
// Workflow definition
208208
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc) { return WorkflowSpec{adaptAnalysisTask<JetD0AngSubstructure>(cfgc, TaskName{"jet-d0-ang-substructure"})}; }
209-

0 commit comments

Comments
 (0)