forked from AliceO2Group/O2Physics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphitutorial_step3.cxx
More file actions
209 lines (174 loc) · 7.17 KB
/
phitutorial_step3.cxx
File metadata and controls
209 lines (174 loc) · 7.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// Copyright 2019-2025 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.
//
// This software is distributed under the terms of the GNU General Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
/// \file phitutorial.cxx
/// \brief Phi meson analysis tutorial
/// \author Adrian Fereydon Nassirpour <adrian.fereydon.nassirpour@cern.ch>
// IMPORTANT INCLUDES
#include "Common/DataModel/Centrality.h"
#include "Common/DataModel/EventSelection.h"
#include "Common/DataModel/Multiplicity.h"
#include "Common/DataModel/PIDResponse.h"
#include "Common/DataModel/TrackSelectionTables.h"
#include "Framework/ASoA.h"
#include "Framework/AnalysisDataModel.h"
#include "Framework/AnalysisTask.h"
#include "ReconstructionDataFormats/Track.h"
#include <Framework/ASoAHelpers.h>
#include <Framework/runDataProcessing.h>
// ROOT Includes (optional)
#include <TLorentzVector.h>
// C++ includes
#include <string>
#include <vector>
using namespace o2;
using namespace o2::framework;
using namespace o2::framework::expressions;
// MAIN STRUCT
struct phitutorial_step3 {
//*************************************//
// SLICECACHE AND REGISTRY DEFS
//*************************************//
SliceCache cache;
HistogramRegistry histos{"histos", {}, OutputObjHandlingPolicy::AnalysisObject};
//*************************************//
// INIT FUNCTION AND HISTOGRAM BOOKING
//*************************************//
void init(o2::framework::InitContext&)
{
const AxisSpec ptAxis = {200, 0, 20.0};
const AxisSpec MinvAxis = {200, 0.85, 1.25};
histos.add("Nch_pT", "Nch_pT", kTH1F, {ptAxis});
histos.add("Nch_USS_Minv", "Nch_USS_Minv", kTH1F, {MinvAxis});
histos.add("Nch_LSS_Minv", "Nch_LSS_Minv", kTH1F, {MinvAxis});
histos.add("Nch_ME_Minv", "Nch_ME_Minv", kTH1F, {MinvAxis});
}; // end of init
//*************************************//
// TIME TO BUILD TRACK AND EVENT CANDIDATES
//*************************************//
using EventCandidates = soa::Join<aod::Collisions, aod::EvSels, aod::FT0Mults, aod::CentFT0Ms>;
using TrackCandidates = soa::Join<aod::Tracks, aod::TracksExtra, aod::TracksDCA, aod::TrackSelection, aod::pidTPCFullKa, aod::pidTOFFullKa>;
double massKa = o2::constants::physics::MassKPlus;
//***************************************//
// PREAMBLE COMPLETE, NOW WE DO HELPER FCNS
//**************************************//
template <typename EventType>
bool eventSelection(const EventType event)
{
if (!event.sel8()) // This is required to extract good events
return false;
return true;
};
//********************************************//
template <typename TracksType>
bool trackSelection(const TracksType track)
{
if (!track.isGlobalTrack())
return false;
if (track.pt() < 0.15)
return false;
if (std::abs(track.eta()) > 1.0)
return false;
return true;
};
//********************************************//
template <typename TrackPID>
bool trackPIDKaon(const TrackPID& candidate)
{
bool tpcPIDPassed{false}, tofPIDPassed{false};
// TPC
if (std::abs(candidate.tpcNSigmaKa()) < 3)
tpcPIDPassed = true;
// TOF
if (candidate.hasTOF()) {
if (std::abs(candidate.tofNSigmaKa()) < 3) {
tofPIDPassed = true;
}
} else {
tofPIDPassed = true;
}
// TPC & TOF
if (tpcPIDPassed && tofPIDPassed) {
return true;
}
return false;
}
//********************************************//
// HELPER FCNS COMPLETE, NOW WE DO PROCESS FCNS
//********************************************//
// SAME EVENT
int nEvents = 0;
void processDataSameEvent(EventCandidates::iterator const& collision, TrackCandidates const& tracks)
{
nEvents++;
if ((nEvents + 1) % 10000 == 0) {
std::cout << "Processed Data Events: " << nEvents << std::endl;
}
if (!eventSelection(collision))
return;
// Last step, we want to remove the cominbatorial background to get a clean peak. We want to fill our new two booked historams, Nch_LSS_Minv and Nch_ME_Minv
// LSS is easy, you simply need to fill the histogram if the conjugate argument below is NOT true.
// For event mixing, we have to now copy our logic into a new process function below, and iterate over track pairs between different events!
for (const auto& track : tracks) {
if (!trackSelection(track)) {
continue;
}
histos.fill(HIST("Nch_pT"), track.pt());
}
for (const auto& [trk1, trk2] : combinations(o2::soa::CombinationsStrictlyUpperIndexPolicy(tracks, tracks))) {
if (!trackSelection(trk1) || !trackSelection(trk2)) {
continue;
}
if (!trackPIDKaon(trk1) || !trackPIDKaon(trk2)) {
continue;
}
ROOT::Math::PxPyPzMVector lDecayDaughter1, lDecayDaughter2, lResonance;
lDecayDaughter1 = ROOT::Math::PxPyPzMVector(trk1.px(), trk1.py(), trk1.pz(), massKa);
lDecayDaughter2 = ROOT::Math::PxPyPzMVector(trk2.px(), trk2.py(), trk2.pz(), massKa);
lResonance = lDecayDaughter1 + lDecayDaughter2;
double conjugate = trk1.sign() * trk2.sign();
if (conjugate < 0) {
histos.fill(HIST("Nch_USS_Minv"), lResonance.M());
}
} // Invariant mass combinations
} // proccessSameEvent
PROCESS_SWITCH(phitutorial_step3, processDataSameEvent, "process Data Same Event", false);
//**************************************************************************************************************************//
// MIXED EVENT
//*********************************************************//
// DEFINITION OF SLICE CACHE, BINNING AND MIXING STRUCTURE
//*********************************************************//
Preslice<aod::Tracks> perCollision = aod::track::collisionId;
// We ensure here that we mix events that have relatively similar characteristics.
std::vector<double> zBins{10, -10, 10};
std::vector<double> multBins{VARIABLE_WIDTH, 0, 5, 10, 20, 30, 40, 50, 100.1};
using BinningType = ColumnBinningPolicy<aod::collision::PosZ, aod::cent::CentFT0M>;
BinningType binning{{zBins, multBins}, true};
SameKindPair<EventCandidates, TrackCandidates, BinningType> pair{binning, 5, -1, &cache};
void processDataMixedEvent(EventCandidates const& collisions, TrackCandidates const& tracks) // notice the collisions subscrition, it is not an iterator here!
{
for (const auto& [c1, tracks1, c2, tracks2] : pair) {
if (!eventSelection(c1) || !eventSelection(c2))
continue;
// Fill your event mixing logic here.
//..
//..
//..
} // pairs
} // processMixedEvent
PROCESS_SWITCH(phitutorial_step3, processDataMixedEvent, "process Data Mixed Event", false);
//***************************************//
// TASK COMPLETE!
//**************************************//
};
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
{
return WorkflowSpec{adaptAnalysisTask<phitutorial_step3>(cfgc)};
};