Skip to content

Commit 35a3f69

Browse files
committed
Add the case for alpha into the skimming task
1 parent e117d65 commit 35a3f69

File tree

3 files changed

+52
-18
lines changed

3 files changed

+52
-18
lines changed

PWGHF/Core/SelectorCuts.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,19 +81,21 @@ static const std::vector<std::string> labelsRowsPid = {"ProtonInLcToPKPi", "Prot
8181
namespace hf_presel_lightnuclei
8282
{
8383

84-
static constexpr int NParticleRows = 3; // number of particles / rows
84+
static constexpr int NParticleRows = 4; // number of particles / rows
8585
static constexpr int NVarCuts = 10; // number of cuts for each particles
8686
static constexpr int NBetheBlochParams = 6; // number of parameters for Bethe-Bloch
8787

8888
// default values for the track cuts for lightnuclei in the track-index-skim-creator
8989
constexpr float CutsTrackQuality[NParticleRows][NVarCuts] = {{-4.f, 3.f, 5.f, 0.f, 100.f, 100.f, 0.83, 160.f, 1.f, 5.f},
90+
{-4.f, 3.f, 5.f, 0.f, 100.f, 100.f, 0.83, 160.f, 1.f, 5.f},
9091
{-4.f, 3.f, 5.f, 0.f, 100.f, 100.f, 0.83, 160.f, 1.f, 5.f},
9192
{-4.f, 3.f, 5.f, 0.f, 100.f, 100.f, 0.83, 160.f, 1.f, 5.f}};
9293
static const std::vector<std::string> labelsCutsTrack = {"nSigmaMinIts", "minItsClusterSizes", "minItsCluster", "minItsIbCluster", "minTpcCluster", "minTpcRow", "minTpcCrossedOverFound", "maxTpcShared", "maxTpcFracShared", "maxTPCnSigmaBB"};
93-
static const std::vector<std::string> labelsRowsNucleiType = {"Deutron", "Triton", "Helium3"};
94+
static const std::vector<std::string> labelsRowsNucleiType = {"Deutron", "Triton", "Helium3", "Alpha"};
9495

9596
constexpr float BetheBlochParams[NParticleRows][NBetheBlochParams] = {{5.39302, 7.859534, 0.004048, 2.323197, 1.609307, 0.09},
9697
{5.39302, 7.859534, 0.004048, 2.323197, 1.609307, 0.09},
98+
{-126.55736, -0.858569, 1.11164, 1.21032, 2.656374, 0.09},
9799
{-126.55736, -0.858569, 1.11164, 1.21032, 2.656374, 0.09}};
98100

99101
static const std::vector<std::string> labelsBetheBlochParams = {"p0", "p1", "p2", "p3", "p4", "resolution"};

PWGHF/DataModel/TrackIndexSkimmingTables.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ enum DecayType {
301301
CdToDeKPi,
302302
CtToTrKPi,
303303
ChToHeKPi,
304+
CaToAlKPi,
304305
N3ProngDecays
305306
};
306307
} // namespace hf_cand_3prong

0 commit comments

Comments
 (0)