Skip to content
Merged
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 PWGLF/Tasks/Resonances/omega2012Analysis.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ using namespace o2::constants::physics;

struct Omega2012Analysis {
// Constants
static constexpr float kSmallNumber = 1e-10f; // Small number to avoid division by zero
static constexpr float kMaxDCAV0ToPV = 1.0f; // Maximum DCA of V0 to PV
static constexpr int kNumExpectedDaughters = 2; // Expected number of daughters for 2-body decay
static constexpr int kPlaceholderPdgCode = 9999999; // o2-linter: disable=pdg/explicit-code (placeholder for generator-specific Omega(2012) PDG code)
static constexpr float kSmallNumber = 1e-10f; // Small number to avoid division by zero
static constexpr float kMaxDCAV0ToPV = 1.0f; // Maximum DCA of V0 to PV
static constexpr int kNumExpectedDaughters = 2; // Expected number of daughters for 2-body decay
static constexpr int kPlaceholderPdgCode = 9999999; // o2-linter: disable=pdg/explicit-code (placeholder for generator-specific Omega(2012) PDG code)
SliceCache cache;
Preslice<aod::ResoCascades> perResoCollisionCasc = aod::resodaughter::resoCollisionId;
Preslice<aod::ResoV0s> perResoCollisionV0 = aod::resodaughter::resoCollisionId;
Expand Down
6 changes: 3 additions & 3 deletions PWGLF/Tasks/Resonances/xi1820Analysis.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ struct Xi1820Analysis {

// Constants
static constexpr float kSmallMomentumDenominator = 1e-10f; // Small value to avoid division by zero
static constexpr float kMaxDcaToPv = 1.0f; // Maximum DCA to primary vertex
static constexpr int kPdgXi1820 = 123314; // o2-linter: disable=pdg/explicit-code (Xi(1820) PDG code not available in PDG_t or o2::constants::physics::Pdg)
static constexpr int kExpectedDaughters = 2; // Expected number of daughters for two-body decay
static constexpr float kMaxDcaToPv = 1.0f; // Maximum DCA to primary vertex
static constexpr int kPdgXi1820 = 123314; // o2-linter: disable=pdg/explicit-code (Xi(1820) PDG code not available in PDG_t or o2::constants::physics::Pdg)
static constexpr int kExpectedDaughters = 2; // Expected number of daughters for two-body decay

// Axes
ConfigurableAxis binsPt{"binsPt", {VARIABLE_WIDTH, 0.0, 0.2, 0.4, 0.6, 0.8, 1.0, 1.5, 2.0, 3.0, 4.0, 6.0, 8.0, 10.0}, "pT"};
Expand Down
Loading