|
10 | 10 | // or submit itself to any jurisdiction. |
11 | 11 | // |
12 | 12 |
|
13 | | -#include <iostream> |
14 | | -#include <cmath> |
15 | | -#include <cstdlib> |
16 | | -#include <string> |
17 | | -#include <vector> |
| 13 | +#include "PWGUD/Core/SGSelector.h" |
| 14 | +#include "PWGUD/Core/SGTrackSelector.h" |
| 15 | +#include "PWGUD/DataModel/UDTables.h" |
| 16 | + |
| 17 | +#include "Framework/AnalysisDataModel.h" |
| 18 | +#include "Framework/AnalysisTask.h" |
| 19 | +#include "Framework/runDataProcessing.h" |
| 20 | + |
18 | 21 | #include "Math/Vector4D.h" |
19 | 22 | #include "TDatabasePDG.h" |
20 | 23 | #include "TMath.h" |
21 | 24 |
|
22 | | -#include "Framework/runDataProcessing.h" |
23 | | -#include "Framework/AnalysisTask.h" |
24 | | -#include "Framework/AnalysisDataModel.h" |
25 | | -#include "PWGUD/DataModel/UDTables.h" |
26 | | -#include "PWGUD/Core/SGSelector.h" |
27 | | -#include "PWGUD/Core/SGTrackSelector.h" |
| 25 | +#include <cmath> |
| 26 | +#include <cstdlib> |
| 27 | +#include <iostream> |
| 28 | +#include <string> |
| 29 | +#include <vector> |
28 | 30 |
|
29 | 31 | using namespace o2; |
30 | 32 | using namespace o2::aod; |
@@ -163,7 +165,8 @@ struct upcExclusiveJpsiCB { |
163 | 165 |
|
164 | 166 | registry.fill(HIST("hSelectionCounter"), 2); |
165 | 167 |
|
166 | | - if(collision.flags()!=1) return; //UPC setting vs std setting |
| 168 | + if (collision.flags() != 1) |
| 169 | + return; // UPC setting vs std setting |
167 | 170 | //____________________________________________________________________________________ |
168 | 171 |
|
169 | 172 | // Create LorentzVector to store all tracks, Pion tracks and TPC Pion PID |
@@ -204,7 +207,7 @@ struct upcExclusiveJpsiCB { |
204 | 207 |
|
205 | 208 | //_____________________________________ |
206 | 209 | // Add all onlyPionTracks into p |
207 | | - for (const auto &pion : onlyPionTracks) { |
| 210 | + for (const auto& pion : onlyPionTracks) { |
208 | 211 | p += pion; |
209 | 212 | } |
210 | 213 |
|
|
0 commit comments