Skip to content
Merged
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
Loading