Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3e189ca
modified track info ordering in derived tables (momentum -> charge)
jjuracka Feb 18, 2025
c6e20e7
reintroduced neutron classes into derived data, first steps towards s…
jjuracka Feb 24, 2025
7f389a1
added track selections per run histogram
jjuracka Mar 4, 2025
a715f86
add function to check hit in innermost ITS layer, lower ITS cluster r…
jjuracka Mar 4, 2025
38b2ae8
updates in histogram axis labels, addition of reconstruction informat…
jjuracka May 4, 2025
7ad9133
reset default value for numContribs to 2
jjuracka May 6, 2025
22a2d82
application of selections for pass5 data
jjuracka Jun 25, 2025
313da5d
Merge branch 'AliceO2Group:master' into updates
jjuracka Jul 4, 2025
9054c5a
attempt to replace TLorentzVector with Vector4D and some other linter…
jjuracka Jul 4, 2025
e1f2039
use PDG_t instead of hard-coded PDG value, added some includes becaus…
jjuracka Jul 6, 2025
21e4da2
trying to normalise angle difference without using RecoDecay
jjuracka Jul 6, 2025
b937a7b
cleaned up a few bits
jjuracka Jul 6, 2025
00ad5b4
added , aod::UDCollisionSelExtras
jjuracka Jul 8, 2025
b7eab8f
made gapSide into a configurable
jjuracka Jul 8, 2025
d375ef2
forgot TPDGCode
jjuracka Jul 8, 2025
d9c620b
Reordering includes
rolavick Jul 9, 2025
4c2b36c
Please consider the following formatting changes
alibuild Jul 9, 2025
822645e
Merge pull request #6 from alibuild/alibot-cleanup-11965
jjuracka Jul 9, 2025
e1ab683
adding runDataProcessing into UPCTauCentralBarrelHelperRL.h
jjuracka Jul 9, 2025
a2c01bf
adding even more headers
jjuracka Jul 9, 2025
d20f12d
implemented trueGap, added checks for RCT and reco mode flags
jjuracka Jul 9, 2025
fd2d883
Please consider the following formatting changes
alibuild Jul 9, 2025
a47df7c
Merge pull request #7 from alibuild/alibot-cleanup-11965
jjuracka Jul 9, 2025
c1d8a08
bug fix
jjuracka Jul 9, 2025
0a09fd3
include Framework headers into SGSelector.h
jjuracka Jul 9, 2025
4573177
revert changes to SGSelector and move trueGap into process function
jjuracka Jul 9, 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
6 changes: 5 additions & 1 deletion PWGUD/Core/UPCTauCentralBarrelHelperRL.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@
#ifndef PWGUD_CORE_UPCTAUCENTRALBARRELHELPERRL_H_
#define PWGUD_CORE_UPCTAUCENTRALBARRELHELPERRL_H_

#include <string>
#include "Framework/AnalysisDataModel.h"
#include "Framework/AnalysisTask.h"
#include "Framework/runDataProcessing.h"

#include <algorithm>
#include <string>

enum MyParticle {
P_ELECTRON = 0,
Expand Down Expand Up @@ -75,7 +79,7 @@
nSigmaTPC[P_PROTON] = std::abs(trackPIDinfo.tpcNSigmaPr());
// Correction if TPC tuneOnData is wrong
if (isMC) {
for (int i = 0; i < 5; i++)

Check failure on line 82 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[magic-number]

Avoid magic numbers in expressions. Assign the value to a clearly named variable or constant.
nSigmaTPC[i] -= nSigmaShift;
}
int enumChoiceTPC = std::distance(std::begin(nSigmaTPC),
Expand Down Expand Up @@ -142,15 +146,15 @@
int enumMyParticle(int valuePDG)
// reads pdg value and returns particle number as in enumMyParticle
{
if (std::abs(valuePDG) == 11) {

Check failure on line 149 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[magic-number]

Avoid magic numbers in expressions. Assign the value to a clearly named variable or constant.

Check failure on line 149 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[pdg/explicit-code]

Avoid hard-coded PDG codes. Use named values from PDG_t or o2::constants::physics::Pdg instead.
return P_ELECTRON;
} else if (std::abs(valuePDG) == 13) {

Check failure on line 151 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[magic-number]

Avoid magic numbers in expressions. Assign the value to a clearly named variable or constant.

Check failure on line 151 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[pdg/explicit-code]

Avoid hard-coded PDG codes. Use named values from PDG_t or o2::constants::physics::Pdg instead.
return P_MUON;
} else if (std::abs(valuePDG) == 211) {

Check failure on line 153 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[magic-number]

Avoid magic numbers in expressions. Assign the value to a clearly named variable or constant.

Check failure on line 153 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[pdg/explicit-code]

Avoid hard-coded PDG codes. Use named values from PDG_t or o2::constants::physics::Pdg instead.
return P_PION;
} else if (std::abs(valuePDG) == 321) {

Check failure on line 155 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[magic-number]

Avoid magic numbers in expressions. Assign the value to a clearly named variable or constant.

Check failure on line 155 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[pdg/explicit-code]

Avoid hard-coded PDG codes. Use named values from PDG_t or o2::constants::physics::Pdg instead.
return P_KAON;
} else if (std::abs(valuePDG) == 2212) {

Check failure on line 157 in PWGUD/Core/UPCTauCentralBarrelHelperRL.h

View workflow job for this annotation

GitHub Actions / O2 linter

[pdg/explicit-code]

Avoid hard-coded PDG codes. Use named values from PDG_t or o2::constants::physics::Pdg instead.
return P_PROTON;
} else {
printDebugMessage("PDG value not found in enumMyParticle. Returning -1.");
Expand Down
Loading
Loading