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: Common/Core/RecoDecay.h
+31-15Lines changed: 31 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,22 @@ using namespace o2::constants::math;
40
40
/// - calculation of topological properties of secondary vertices
41
41
/// - Monte Carlo matching of decays at track and particle level
42
42
43
+
// mapping of charm-hadron origin type
44
+
namespaceo2
45
+
{
46
+
namespaceaod
47
+
{
48
+
namespacehf_cand
49
+
{
50
+
enum OriginType { None = 0,
51
+
Prompt,
52
+
NonPrompt };
53
+
} // namespace hf_cand
54
+
} // namespace aod
55
+
} // namespace o2
56
+
57
+
usingnamespaceo2::aod::hf_cand;
58
+
43
59
classRecoDecay
44
60
{
45
61
public:
@@ -917,11 +933,11 @@ class RecoDecay
917
933
/// \param particlesMC table with MC particles
918
934
/// \param particle MC particle
919
935
/// \param searchUpToQuark if true tag origin based on charm/beauty quark otherwise on b-hadron
920
-
/// \return an integer corresponding to the origin (0: none, 1: prompt, 2: nonprompt) as in hf_cand::OriginType (see PWGHF/DataModel/HFSecondaryVertex.h)
936
+
/// \return an integer corresponding to the origin (0: none, 1: prompt, 2: nonprompt) as in OriginType
0 commit comments