Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions PWGCF/FemtoUniverse/Core/FemtoUniverseCascadeSelection.h
Original file line number Diff line number Diff line change
Expand Up @@ -317,11 +317,11 @@ void FemtoUniverseCascadeSelection::init(HistogramRegistry* registry)
"container - quitting!";
}

posDaughTrack.init<aod::femtouniverseparticle::ParticleType::kV0Child,
posDaughTrack.init<aod::femtouniverseparticle::ParticleType::kCascadeV0Child,
aod::femtouniverseparticle::TrackType::kPosChild,
aod::femtouniverseparticle::CutContainerType>(
mHistogramRegistry);
negDaughTrack.init<aod::femtouniverseparticle::ParticleType::kV0Child,
negDaughTrack.init<aod::femtouniverseparticle::ParticleType::kCascadeV0Child,
aod::femtouniverseparticle::TrackType::kNegChild,
aod::femtouniverseparticle::CutContainerType>(
mHistogramRegistry);
Expand Down Expand Up @@ -580,9 +580,9 @@ void FemtoUniverseCascadeSelection::fillCascadeQA(Col const& col, Casc const& ca
template <typename Col, typename Casc, typename Track>
void FemtoUniverseCascadeSelection::fillQA(Col const& /*col*/, Casc const& /*cascade*/, Track const& posTrack, Track const& negTrack, Track const& bachTrack)
{
posDaughTrack.fillQA<aod::femtouniverseparticle::ParticleType::kV0Child,
posDaughTrack.fillQA<aod::femtouniverseparticle::ParticleType::kCascadeV0Child,
aod::femtouniverseparticle::TrackType::kPosChild>(posTrack);
negDaughTrack.fillQA<aod::femtouniverseparticle::ParticleType::kV0Child,
negDaughTrack.fillQA<aod::femtouniverseparticle::ParticleType::kCascadeV0Child,
aod::femtouniverseparticle::TrackType::kNegChild>(negTrack);
bachTrackSel.fillQA<aod::femtouniverseparticle::ParticleType::kCascadeBachelor,
aod::femtouniverseparticle::TrackType::kBachelor>(bachTrack);
Expand Down
17 changes: 10 additions & 7 deletions PWGCF/FemtoUniverse/DataModel/FemtoDerived.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,17 @@
#ifndef PWGCF_FEMTOUNIVERSE_DATAMODEL_FEMTODERIVED_H_
#define PWGCF_FEMTOUNIVERSE_DATAMODEL_FEMTODERIVED_H_

#include <cmath>
#include "Framework/ASoA.h"
#include "MathUtils/Utils.h"
#include "Framework/DataTypes.h"
#include "Common/DataModel/Multiplicity.h"
#include "Common/DataModel/PIDResponse.h"
#include "Common/DataModel/TrackSelectionTables.h"

#include "Framework/ASoA.h"
#include "Framework/AnalysisDataModel.h"
#include "Framework/DataTypes.h"
#include "Framework/Expressions.h"
#include "Common/DataModel/TrackSelectionTables.h"
#include "Common/DataModel/PIDResponse.h"
#include "MathUtils/Utils.h"

#include <cmath>

namespace o2::aod
{
Expand Down Expand Up @@ -64,6 +66,7 @@ enum ParticleType {
kV0, //! V0
kV0Child, //! Child track of a V0
kCascade, //! Cascade
kCascadeV0Child, //! Child track of a V0 coming from a cascade
kCascadeBachelor, //! Bachelor track of a cascade
kPhi, //! Phi meson
kPhiChild, //! Child track of a Phi meson
Expand All @@ -72,7 +75,7 @@ enum ParticleType {
kNParticleTypes //! Number of particle types
};

static constexpr std::string_view ParticleTypeName[kNParticleTypes] = {"Tracks", "MCTruthTracks", "V0", "V0Child", "Cascade", "CascadeBachelor", "Phi", "PhiChild", "D0", "D0Child"}; //! Naming of the different particle types
static constexpr std::string_view ParticleTypeName[kNParticleTypes] = {"Tracks", "MCTruthTracks", "V0", "V0Child", "Cascade", "CascadeV0Child", "CascadeBachelor", "Phi", "PhiChild", "D0", "D0Child"}; //! Naming of the different particle types
static constexpr std::string_view TempFitVarName[kNParticleTypes] = {"/hDCAxy", "/hPDGvspT", "/hCPA", "/hDCAxy", "/hCPA", "/hDCAxy", "/hInvMass", "/hDCAxy", "/hInvMass", "/hDCAxy"};

using CutContainerType = uint32_t; //! Definition of the data type for the bit-wise container for the different selection criteria
Expand Down
Loading