Skip to content

Commit 52634e0

Browse files
committed
fixed linter errors
1 parent 1b1d65c commit 52634e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

PWGHF/HFL/Tasks/taskElectronWeakBoson.cxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
1+
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders of ALICE O2.
22
// All rights not expressly granted are reserved.
33
//
44
// This software is distributed under the terms of the GNU General Public
@@ -55,6 +55,7 @@
5555
#include <cstdint>
5656
#include <cstdlib>
5757
#include <string>
58+
#include <utility>
5859
#include <vector>
5960

6061
using namespace o2;
@@ -130,7 +131,7 @@ struct HfTaskElectronWeakBoson {
130131
Configurable<bool> enableCentralityAnalysis{"enableCentralityAnalysis", true, "Enable centrality-dependent analysis"};
131132
Configurable<float> centralityMin{"centralityMin", -1, "minimum cut on centrality selection"};
132133
Configurable<float> centralityMax{"centralityMax", 101, "maximum cut on centrality selection"};
133-
Configurable<std::vector<double>> centralityBins{"centalityBins", {0, 20, 60, 100}, "centrality bins"};
134+
Configurable<std::vector<double>> centralityBins{"centralityBins", {0, 20, 60, 100}, "centrality bins"};
134135

135136
// QA for Z->ee
136137
Configurable<bool> enableZeeRecoQA{"enableZeeRecoQA", false, "Enable QA for Z->ee reconstruction"};

0 commit comments

Comments
 (0)