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
Copy file name to clipboardExpand all lines: PWGJE/JetFinders/jetFinder.cxx
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
#include<vector>
19
19
20
20
#include"PWGJE/Core/JetFindingUtilities.h"
21
+
#include"PWGJE/Core/JetDerivedDataUtilities.h"
21
22
#include"Framework/runDataProcessing.h"
22
23
23
24
usingnamespaceo2;
@@ -41,6 +42,7 @@ struct JetFinderTask {
41
42
Configurable<int> trackOccupancyInTimeRangeMax{"trackOccupancyInTimeRangeMax", 999999, "maximum occupancy of tracks in neighbouring collisions in a given time range"};
Filter mcCollisionFilter = (!skipMBGapEvents || aod::jmccollision::subGeneratorId != static_cast<int>(jetderiveddatautilities::JCollisionSubGeneratorId::mbGap)); // should we add a posZ vtx cut here or leave it to analysers?
143
146
Filter trackCuts = (aod::jtrack::pt >= trackPtMin && aod::jtrack::pt < trackPtMax && aod::jtrack::eta >= trackEtaMin && aod::jtrack::eta <= trackEtaMax && aod::jtrack::phi >= trackPhiMin && aod::jtrack::phi <= trackPhiMax); // do we need eta cut both here and in globalselection?
Copy file name to clipboardExpand all lines: PWGJE/JetFinders/jetFinderHF.cxx
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@
19
19
#include"CommonConstants/PhysicsConstants.h"
20
20
21
21
#include"PWGJE/Core/JetFindingUtilities.h"
22
+
#include"PWGJE/Core/JetDerivedDataUtilities.h"
22
23
#include"Common/Core/RecoDecay.h"
23
24
24
25
usingnamespaceo2;
@@ -45,6 +46,7 @@ struct JetFinderHFTask {
45
46
Configurable<int> trackOccupancyInTimeRangeMax{"trackOccupancyInTimeRangeMax", 999999, "maximum occupancy of tracks in neighbouring collisions in a given time range"};
Filter mcCollisionFilter = (!skipMBGapEvents || aod::jmccollision::subGeneratorId != static_cast<int>(jetderiveddatautilities::JCollisionSubGeneratorId::mbGap)); // should we add a posZ vtx cut here or leave it to analysers?
PROCESS_SWITCH(JetFinderHFTask, processChargedEvtWiseSubJetsMCD, "charged hf jet finding on MC detector level with event-wise constituent subtraction", false);
Copy file name to clipboardExpand all lines: PWGJE/JetFinders/jetFinderV0.cxx
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
#include"CommonConstants/PhysicsConstants.h"
19
19
20
20
#include"PWGJE/Core/JetFindingUtilities.h"
21
+
#include"PWGJE/Core/JetDerivedDataUtilities.h"
21
22
#include"Common/Core/RecoDecay.h"
22
23
23
24
usingnamespaceo2;
@@ -43,6 +44,7 @@ struct JetFinderV0Task {
43
44
Configurable<int> trackOccupancyInTimeRangeMax{"trackOccupancyInTimeRangeMax", 999999, "maximum occupancy of tracks in neighbouring collisions in a given time range"};
Filter mcCollisionFilter = (!skipMBGapEvents || aod::jmccollision::subGeneratorId != static_cast<int>(jetderiveddatautilities::JCollisionSubGeneratorId::mbGap)); // should we add a posZ vtx cut here or leave it to analysers?
0 commit comments