Skip to content

Commit 4b681ec

Browse files
committed
Move ALICE3 decay types to ALICE3/Core/DecayChannelsLegacy.h
1 parent 0407ebb commit 4b681ec

File tree

5 files changed

+49
-28
lines changed

5 files changed

+49
-28
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// 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.
4+
//
5+
// This software is distributed under the terms of the GNU General Public
6+
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7+
//
8+
// In applying this license CERN does not waive the privileges and immunities
9+
// granted to it by virtue of its status as an Intergovernmental Organization
10+
// or submit itself to any jurisdiction.
11+
12+
/// \file DecayChannelsLegacy.h
13+
/// \brief Legacy definitions of constants for MC flagging of HF decay channels.
14+
/// \author Vít Kučera <vit.kucera@cern.ch>, Inha University
15+
16+
#ifndef PWGHF_ALICE3_CORE_DECAYCHANNELSLEGACY_H_
17+
#define PWGHF_ALICE3_CORE_DECAYCHANNELSLEGACY_H_
18+
19+
namespace o2::aod
20+
{
21+
namespace hf_cand_x
22+
{
23+
enum DecayType {
24+
XToJpsiToEEPiPi = 0,
25+
XToJpsiToMuMuPiPi
26+
};
27+
} // namespace hf_cand_x
28+
29+
namespace hf_cand_xicc
30+
{
31+
enum DecayType {
32+
XiccToXicPi = 0
33+
};
34+
} // namespace hf_cand_xicc
35+
36+
namespace hf_cand_chic
37+
{
38+
enum DecayType {
39+
ChicToJpsiToEEGamma = 0,
40+
ChicToJpsiToMuMuGamma
41+
};
42+
} // namespace hf_cand_chic
43+
44+
} // namespace o2::aod
45+
46+
#endif // PWGHF_ALICE3_CORE_DECAYCHANNELSLEGACY_H_

PWGHF/Core/DecayChannelsLegacy.h

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -89,31 +89,6 @@ enum DecayType {
8989
};
9090
} // namespace hf_cand_lb
9191

92-
// ALICE3
93-
94-
namespace hf_cand_x
95-
{
96-
enum DecayType {
97-
XToJpsiToEEPiPi = 0,
98-
XToJpsiToMuMuPiPi
99-
};
100-
} // namespace hf_cand_x
101-
102-
namespace hf_cand_xicc
103-
{
104-
enum DecayType {
105-
XiccToXicPi = 0
106-
};
107-
} // namespace hf_cand_xicc
108-
109-
namespace hf_cand_chic
110-
{
111-
enum DecayType {
112-
ChicToJpsiToEEGamma = 0,
113-
ChicToJpsiToMuMuGamma
114-
};
115-
} // namespace hf_cand_chic
116-
11792
} // namespace o2::aod
11893

11994
#endif // PWGHF_CORE_DECAYCHANNELSLEGACY_H_

PWGHF/TableProducer/candidateCreatorXicc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/// \author Luigi Dello Stritto <luigi.dello.stritto@cern.ch >, SALERNO
1818
/// \author Mattia Faggin <mattia.faggin@cern.ch>, University and INFN PADOVA
1919

20-
#include "PWGHF/Core/DecayChannelsLegacy.h"
20+
#include "PWGHF/ALICE3/Core/DecayChannelsLegacy.h"
2121
#include "PWGHF/Core/HfHelper.h"
2222
#include "PWGHF/DataModel/AliasTables.h"
2323
#include "PWGHF/DataModel/CandidateReconstructionTables.h"

PWGHF/TableProducer/candidateSelectorXiccToPKPiPi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
///
1515
/// \author Gian Michele Innocenti <gian.michele.innocenti@cern.ch>, CERN
1616

17-
#include "PWGHF/Core/DecayChannelsLegacy.h"
17+
#include "PWGHF/ALICE3/Core/DecayChannelsLegacy.h"
1818
#include "PWGHF/Core/HfHelper.h"
1919
#include "PWGHF/Core/SelectorCuts.h"
2020
#include "PWGHF/DataModel/AliasTables.h"

PWGHF/TableProducer/treeCreatorXiccToPKPiPi.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
///
1818
/// \author Jinjoo Seo <jin.joo.seo@cern.ch>, Inha University
1919

20-
#include "PWGHF/Core/DecayChannelsLegacy.h"
20+
#include "PWGHF/ALICE3/Core/DecayChannelsLegacy.h"
2121
#include "PWGHF/Core/HfHelper.h"
2222
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2323
#include "PWGHF/DataModel/CandidateSelectionTables.h"

0 commit comments

Comments
 (0)