Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f730a30
[PWGLF] Add new task for MFT Pb-Pb
gbencedi Nov 13, 2024
c3f19c9
Fix formatting
gbencedi Nov 13, 2024
3487754
fix header
gbencedi Nov 13, 2024
8c047e2
fix includes and casting
gbencedi Nov 13, 2024
d3aac26
fix clang-format
gbencedi Nov 13, 2024
9aa4d4c
Please consider the following formatting changes
alibuild Nov 13, 2024
90fdb9f
Merge pull request #12 from alibuild/alibot-cleanup-8425
gbencedi Nov 13, 2024
98d8071
Merge branch 'AliceO2Group:master' into master
gbencedi Nov 29, 2024
43f4ee2
Merge branch 'AliceO2Group:master' into master
gbencedi Dec 11, 2024
37147db
[PWGLF] Removed filters for collisions
gbencedi Dec 11, 2024
ea6a5c6
Please consider the following formatting changes
alibuild Dec 11, 2024
359766b
Merge pull request #13 from alibuild/alibot-cleanup-8913
gbencedi Dec 11, 2024
3d33c14
Update dndeta-mft-pbpb.cxx
gbencedi Dec 11, 2024
823166c
Merge branch 'AliceO2Group:master' into master
gbencedi Jan 13, 2025
6583630
[PWGLF] Remove Filter for collisions
gbencedi Jan 13, 2025
8d1c2c3
Please consider the following formatting changes
alibuild Jan 13, 2025
71d1805
Merge pull request #14 from alibuild/alibot-cleanup-9300
gbencedi Jan 13, 2025
79e8fb0
Merge branch 'AliceO2Group:master' into master
gbencedi Jan 17, 2025
70fe555
[PWGLF] Add azimuthal angle cut
gbencedi Jan 17, 2025
39580eb
fix copyright
gbencedi Jan 17, 2025
4ca03da
fix copyright
gbencedi Jan 17, 2025
7b73184
.
gbencedi Jan 17, 2025
2b6307d
Please consider the following formatting changes
alibuild Jan 17, 2025
16c6ee3
Merge pull request #15 from alibuild/alibot-cleanup-9372
gbencedi Jan 17, 2025
a35c90b
Update dndetaMFTPbPb.cxx
gbencedi Jan 17, 2025
bf493e7
Update dndetaMFTPbPb.cxx
gbencedi Jan 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update dndeta-mft-pbpb.cxx
fix copyright header
  • Loading branch information
gbencedi authored Dec 11, 2024
commit 3d33c149dedfb136378dc46e95df2a391a6e56fa
4 changes: 2 additions & 2 deletions PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright
// holders. All rights not expressly granted are reserved.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
Expand Down Expand Up @@ -550,14 +550,14 @@
if (usePhiCut) {
float phi = track.phi();
o2::math_utils::bringTo02Pi(phi);
if (phi < 0.f || 2.f * M_PI < phi) {

Check warning on line 553 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.

Check warning on line 553 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[pi-multiple-fraction]

Consider using multiples/fractions of PI defined in o2::constants::math.
return false;
}
if ((phi < cfgPhiCut) ||
((phi > M_PI - cfgPhiCut) && (phi < M_PI + cfgPhiCut)) ||

Check warning on line 557 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.
(phi > 2. * M_PI - cfgPhiCut) ||

Check warning on line 558 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.
((phi > ((M_PI / 2. - 0.1) * M_PI) - cfgPhiCut) &&

Check warning on line 559 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.
(phi < ((M_PI / 2. - 0.1) * M_PI) + cfgPhiCut)))

Check warning on line 560 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.
return false;
}
return true;
Expand Down Expand Up @@ -589,7 +589,7 @@
if (fillHis) {
float phi = track.phi();
o2::math_utils::bringTo02Pi(phi);
if (phi < 0.f || 2.f * M_PI < phi) {

Check warning on line 592 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.
continue;
}
if constexpr (C::template contains<aod::CentFT0Cs>()) {
Expand Down Expand Up @@ -623,7 +623,7 @@
if (fillHis) {
float phi = itrack.phi();
o2::math_utils::bringTo02Pi(phi);
if (phi < 0.f || 2.f * M_PI < phi) {

Check warning on line 626 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.
continue;
}
if constexpr (C::template contains<aod::CentFT0Cs>()) {
Expand Down Expand Up @@ -765,7 +765,7 @@

float phi = particle.phi();
o2::math_utils::bringTo02Pi(phi);
if (phi < 0.f || 2.f * M_PI < phi) {

Check warning on line 768 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.
continue;
}
if constexpr (isCent) {
Expand All @@ -781,7 +781,7 @@
if (atLeastOne) {
float phi = particle.phi();
o2::math_utils::bringTo02Pi(phi);
if (phi < 0.f || 2.f * M_PI < phi) {

Check warning on line 784 in PWGMM/Mult/Tasks/dndeta-mft-pbpb.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[external-pi]

Consider using the PI constant (and its multiples and fractions) defined in o2::constants::math.
continue;
}
if constexpr (isCent) {
Expand Down
Loading