Skip to content

Commit f4eca6d

Browse files
committed
Please consider the following formatting changes
1 parent c587034 commit f4eca6d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PWGJE/Core/JetTaggingUtilities.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ int vertexClustering(AnyCollision const& collision, AnalysisJet const& jet, AnyT
800800
trkLabels["trkVtxIndex"] = std::vector<int>(nTrks, -1);
801801
if (count.size() != 0) { // If there is any SV cluster not only PV cluster
802802
for (auto& [idx, avgDistance] : avgDistances) // o2-linter: disable=const-ref-in-for-loop
803-
avgDistance /= count[idx];
803+
avgDistance /= count[idx];
804804

805805
nVertices += avgDistances.size();
806806

PWGJE/TableProducer/jetTaggerHF.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,11 +375,11 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
375375

376376
tasks.emplace_back(
377377
adaptAnalysisTask<JetTaggerhfCharged>(cfgc,
378-
SetDefaultProcesses{}, TaskName{"jet-taggerhf-charged"})); // o2-linter: disable=name/o2-task
378+
SetDefaultProcesses{}, TaskName{"jet-taggerhf-charged"})); // o2-linter: disable=name/o2-task
379379

380380
tasks.emplace_back(
381381
adaptAnalysisTask<JetTaggerhfFull>(cfgc,
382-
SetDefaultProcesses{}, TaskName{"jet-taggerhf-full"})); // o2-linter: disable=name/o2-task
382+
SetDefaultProcesses{}, TaskName{"jet-taggerhf-full"})); // o2-linter: disable=name/o2-task
383383
/*
384384
tasks.emplace_back(
385385
adaptAnalysisTask<JetTaggerhfNeutral>(cfgc,

0 commit comments

Comments
 (0)