Skip to content

Commit aff8bc5

Browse files
committed
adding enum D0McCategory
1 parent 9271067 commit aff8bc5

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

PWGJE/Tasks/jetCorrelationD0.cxx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
#include "PWGJE/DataModel/Jet.h"
2020
#include "PWGJE/DataModel/JetReducedData.h"
2121

22+
#include "PWGHF/Core/DecayChannels.h"
23+
2224
#include "Common/Core/RecoDecay.h"
2325

2426
#include <CommonConstants/MathConstants.h>
@@ -292,13 +294,13 @@ struct JetCorrelationD0 {
292294
registry.add("hEtaResolution", "#eta resolution;#p_{T,part};Resolution", {HistType::kTH2F, {{400, 0, 400}, {1000, -1.0, 1.0}}});
293295
}
294296
enum D0McCategory : int {
295-
Undefined = -1, // no truth match / unclassified
296-
Signal = 0, // correctly identified D0(bar), π+ K−
297-
Reflection = 1, // true D0(bar) reconstructed with swapped mass hypothesis
298-
CorrBkgPiKPi0 = 2, // correlated background: π+ K− π0
299-
CorrBkgPiPi = 3, // correlated background: π+ π−
300-
CorrBkgPiPiPi0 = 4, // correlated background: π+ π− π0
301-
CorrBkgKK = 5 // correlated background: K+ K−
297+
Undefined = -1, // no truth match / unclassified
298+
Signal = 0, // correctly identified D0(bar), π+ K−
299+
Reflection = 1, // true D0(bar) reconstructed with swapped mass hypothesis
300+
CorrBkgPiKPi0 = 2, // correlated background: π+ K− π0
301+
CorrBkgPiPi = 3, // correlated background: π+ π−
302+
CorrBkgPiPiPi0 = 4, // correlated background: π+ π− π0
303+
CorrBkgKK = 5 // correlated background: K+ K−
302304
};
303305
void processData(soa::Filtered<aod::JetCollisions>::iterator const& collision,
304306
aod::CandidatesD0Data const& d0Candidates,

0 commit comments

Comments
 (0)