Skip to content

Commit 77d34ec

Browse files
authored
Merge branch 'master' into master
2 parents 821e249 + 6cc98ca commit 77d34ec

File tree

124 files changed

+1113
-480
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+1113
-480
lines changed

.git-blame-ignore-revs

Whitespace-only changes.

.mega-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ PYTHON_PYRIGHT_CONFIG_FILE: pyproject.toml
3939
PYTHON_RUFF_CONFIG_FILE: pyproject.toml
4040
CPP_CPPLINT_FILE_EXTENSIONS: [".C", ".c", ".c++", ".cc", ".cl", ".cpp", ".cu", ".cuh", ".cxx", ".cxx.in", ".h", ".h++", ".hh", ".h.in", ".hpp", ".hxx", ".inc", ".inl", ".macro"]
4141
CPP_CLANG_FORMAT_FILE_EXTENSIONS: [".C", ".c", ".c++", ".cc", ".cl", ".cpp", ".cu", ".cuh", ".cxx", ".cxx.in", ".h", ".h++", ".hh", ".h.in", ".hpp", ".hxx", ".inc", ".inl", ".macro"]
42-
CPP_CPPCHECK_ARGUMENTS: --language=c++ --std=c++20 --check-level=exhaustive
42+
CPP_CPPCHECK_ARGUMENTS: --language=c++ --std=c++20 --check-level=exhaustive --suppressions-list=cppcheck_config
4343
REPOSITORY_GITLEAKS_PR_COMMITS_SCAN: true

Common/TableProducer/mftmchMatchingML.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020-2022 CERN and copyright holders of ALICE O2.
1+
// Copyright 2020-2025 CERN and copyright holders of ALICE O2.
22
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
33
// All rights not expressly granted are reserved.
44
//

Common/Tasks/trackqa.cxx

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// Task producing basic tracking qa histograms
1414
//
1515

16+
#include <utility> // std::swap
17+
#include <vector>
18+
1619
#include "Framework/AnalysisDataModel.h"
1720
#include "Framework/AnalysisTask.h"
1821
#include "Framework/HistogramRegistry.h"
@@ -101,7 +104,7 @@ struct TrackQa {
101104
histos.fill(HIST("TrackPar/signed1Pt"), track.signed1Pt());
102105
histos.fill(HIST("TrackPar/snp"), track.snp());
103106
histos.fill(HIST("TrackPar/tgl"), track.tgl());
104-
for (unsigned int i = 0; i < 64; i++) {
107+
for (unsigned int i = 0; i < 32; i++) {
105108
if (track.flags() & (1 << i)) {
106109
histos.fill(HIST("TrackPar/flags"), i);
107110
}
@@ -161,13 +164,13 @@ struct TrackQaMc {
161164

162165
HistogramRegistry resolution{"Resolution", {}, OutputObjHandlingPolicy::QAObject};
163166

164-
void init(o2::framework::InitContext&){
165-
166-
};
167-
168-
void process(soa::Join<aod::FullTracks, aod::McTrackLabels>::iterator const&){
167+
void init(o2::framework::InitContext&)
168+
{
169+
}
169170

170-
};
171+
void process(soa::Join<aod::FullTracks, aod::McTrackLabels>::iterator const&)
172+
{
173+
}
171174
};
172175

173176
//****************************************************************************************

EventFiltering/PWGCF/CFFilterQA.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019-2022 CERN and copyright holders of ALICE O2.
1+
// Copyright 2019-2025 CERN and copyright holders of ALICE O2.
22
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
33
// All rights not expressly granted are reserved.
44
//

PWGCF/DataModel/FemtoDerived.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019-2022 CERN and copyright holders of ALICE O2.
1+
// Copyright 2019-2025 CERN and copyright holders of ALICE O2.
22
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
33
// All rights not expressly granted are reserved.
44
//

PWGCF/Femto/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 CERN and copyright holders of ALICE O2.
1+
# Copyright 2019-2025 CERN and copyright holders of ALICE O2.
22
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
33
# All rights not expressly granted are reserved.
44
#

PWGCF/Femto/TableProducer/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 CERN and copyright holders of ALICE O2.
1+
# Copyright 2019-2025 CERN and copyright holders of ALICE O2.
22
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
33
# All rights not expressly granted are reserved.
44
#

PWGCF/FemtoDream/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 CERN and copyright holders of ALICE O2.
1+
# Copyright 2019-2025 CERN and copyright holders of ALICE O2.
22
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
33
# All rights not expressly granted are reserved.
44
#

PWGCF/FemtoDream/Core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019-2024 CERN and copyright holders of ALICE O2.
1+
# Copyright 2019-2025 CERN and copyright holders of ALICE O2.
22
# See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
33
# All rights not expressly granted are reserved.
44
#

0 commit comments

Comments
 (0)