You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2
-
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3
-
// All rights not expressly granted are reserved.
2
+
// See https://alice-o2.web.cern.ch/copyright for details of the copyright
3
+
//holders. All rights not expressly granted are reserved.
4
4
//
5
5
// This software is distributed under the terms of the GNU General Public
6
6
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
@@ -12,27 +12,29 @@
12
12
13
13
// Author: Filip Krizek
14
14
15
-
#include"ReconstructionDataFormats/Track.h"
16
-
#include"Framework/runDataProcessing.h"
17
-
#include"Framework/AnalysisTask.h"
18
-
#include"Framework/AnalysisDataModel.h"
15
+
#include"Framework/ASoA.h"
19
16
#include"Framework/ASoAHelpers.h"
20
-
//FK #include "Common/DataModel/PIDResponse.h"
17
+
#include"Framework/AnalysisDataModel.h"
18
+
#include"Framework/AnalysisTask.h"
19
+
#include"Framework/runDataProcessing.h"
20
+
#include"ReconstructionDataFormats/Track.h"
21
21
22
+
#include"Common/Core/TrackSelection.h"
23
+
#include"Common/Core/TrackSelectionDefaults.h"
22
24
#include"Common/DataModel/EventSelection.h"
23
25
#include"Common/DataModel/TrackSelectionTables.h"
24
26
25
-
#include"PWGJE/DataModel/Jet.h"
26
-
#include"PWGJE/DataModel/EMCALClusters.h"
27
27
#include"PWGJE/Core/JetFinder.h"
28
+
#include"PWGJE/DataModel/EMCALClusters.h"
29
+
#include"PWGJE/DataModel/Jet.h"
28
30
29
31
#include"../filterTables.h"
30
32
31
33
#include"Framework/HistogramRegistry.h"
32
34
35
+
#include<TMath.h>
33
36
#include<cmath>
34
37
#include<string>
35
-
#include<TMath.h>
36
38
37
39
usingnamespaceo2;
38
40
usingnamespaceo2::framework;
@@ -44,53 +46,135 @@ struct jetFilter {
44
46
enum { kJetChHighPt = 0,
45
47
kHighPtObjects };
46
48
47
-
//event selection cuts
48
-
Configurable<float> selectionJetChHighPt{"selectionJetChHighPt", 33., "Minimum charged jet pT trigger threshold"}; //we want to keep all events having a charged jet with pT above this
49
+
// event selection cuts
50
+
Configurable<float> selectionJetChHighPt{
51
+
"selectionJetChHighPt", 33.,
52
+
"Minimum charged jet pT trigger threshold"}; // we want to keep all events
0 commit comments