Skip to content
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
2e43b1c
Phi parametrizations were updated
PaolaVT Jul 29, 2025
2c6e7c6
Merge branch 'AliceO2Group:master' into master
PaolaVT Aug 1, 2025
ea986ae
Merge branch 'AliceO2Group:master' into master
PaolaVT Aug 1, 2025
49fe700
The analysis task dedxPidAnalysis.cxx was added
PaolaVT Aug 1, 2025
0648cf8
Merge branch 'AliceO2Group:master' into master
PaolaVT Aug 22, 2025
a5bcb83
Event selection was modified
PaolaVT Aug 22, 2025
3ca59ec
Event selection was modified
PaolaVT Aug 22, 2025
02a6722
Merge branch 'AliceO2Group:master' into master
PaolaVT Sep 4, 2025
55663dd
New cuts and some modifications on their names were implemented
PaolaVT Sep 4, 2025
3135ed6
Merge branch 'AliceO2Group:master' into master
PaolaVT Sep 11, 2025
d97f118
New histograms, event and track seleccions were implemented
Sep 11, 2025
1e19413
New histograms, event and track seleccions were implemented
Sep 11, 2025
3306434
Merge branch 'AliceO2Group:master' into master
PaolaVT Sep 14, 2025
bff8740
The issue with the macOS-arm checks has been resolved
Sep 14, 2025
637b03a
The issue with the macOS-arm checks has been resolved
Sep 14, 2025
b0aa343
Merge branch 'AliceO2Group:master' into master
PaolaVT Sep 15, 2025
b6ee179
Update code following review feedback
Sep 15, 2025
406d558
Update code following review feedback
Sep 15, 2025
bfbc003
Merge branch 'AliceO2Group:master' into master
PaolaVT Oct 4, 2025
17cb397
Add centrality classes and update V0 selection cuts
Oct 4, 2025
e33838a
Merge branch 'AliceO2Group:master' into master
PaolaVT Feb 4, 2026
e8e39e7
A problem in the track counter was fixed
Feb 4, 2026
5a42559
Merge branch 'AliceO2Group:master' into master
PaolaVT Feb 6, 2026
803e834
INEL cut was added
Feb 6, 2026
78fce6e
Merge branch 'AliceO2Group:master' into master
PaolaVT Feb 8, 2026
44785ac
Merge branch 'AliceO2Group:master' into master
PaolaVT Feb 13, 2026
44c0cae
Add ten different multiplicity selections
Feb 13, 2026
aba9c2f
Merge branch 'AliceO2Group:master' into master
PaolaVT Feb 20, 2026
b27ab5e
Cross-check histograms for efficiency
Feb 20, 2026
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
8 changes: 8 additions & 0 deletions PWGLF/Tasks/Nuspex/dedxPidAnalysis.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,10 @@ struct DedxPidAnalysis {
// Event Counter by centrality
registryDeDx.add("histCentrality", "Centrality", HistType::kTH1F, {centAxis});

// Tracks vs p
registryDeDx.add("Tracks_vs_pT_all", "pT All", HistType::kTH1F, {{ptAxis}});
registryDeDx.add("Tracks_vs_pT_all_cuts", "pT All + cuts", HistType::kTH1F, {{ptAxis}});

// Event Counter
registryDeDx.add("evsel", "events selected", HistType::kTH1F, {{6, 0.5, 6.5, ""}});
auto hstat = registryDeDx.get<TH1>(HIST("evsel"));
Expand Down Expand Up @@ -1397,6 +1401,8 @@ struct DedxPidAnalysis {
continue;

registryDeDx.fill(HIST("trackselAll"), TrkPriCutLabel::SelectionPrim);
// For pt
registryDeDx.fill(HIST("Tracks_vs_pT_all"), trk.pt());

// phi and Ncl cut
if (phiVarCut) {
Expand Down Expand Up @@ -1424,6 +1430,8 @@ struct DedxPidAnalysis {
}

registryDeDx.fill(HIST("heta_vs_NclFound_TPC_After_Primary"), trk.eta(), trk.tpcNClsFound());
// For pt + cuts
registryDeDx.fill(HIST("Tracks_vs_pT_all_cuts"), trk.pt());

float signedP = trk.sign() * getMomentum(trk);

Expand Down
Loading