Skip to content

Commit

Permalink
add missing updates
Browse files Browse the repository at this point in the history
  • Loading branch information
BongHwi committed Dec 10, 2024
1 parent 506fb24 commit d75cb9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PWGLF/Tasks/Resonances/xi1530Analysis.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ struct cascadeXiAnalysis {
for (auto const& casc : cascTracks) {
histos.fill(HIST("QA_Casc_Xi/h1d_mass_Xi"), casc.mXi());
histos.fill(HIST("QA_Casc_Xi/h1d_v0_radius"), casc.transRadius());
histos.fill(HIST("QA_Casc_Xi/h1d_casc_radius"), casc.casctransRadius());
histos.fill(HIST("QA_Casc_Xi/h1d_casc_radius"), casc.cascTransRadius());
histos.fill(HIST("QA_Casc_Xi/h1d_v0_cosPA"), casc.v0CosPA());
histos.fill(HIST("QA_Casc_Xi/h1d_casc_cosPA"), casc.cascCosPA());
histos.fill(HIST("QA_Casc_Xi/h1d_dca_postoPV"), casc.dcapostopv());
Expand Down
2 changes: 1 addition & 1 deletion PWGLF/Tasks/Resonances/xi1530Analysisqa.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ struct xi1530analysisqa {
return false;
if (track.cascCosPA() < cCosPACasc)
return false;
if (track.casctransRadius() > cMaxCascradiuscut || track.casctransRadius() < cMinCascradiuscut)
if (track.cascTransRadius() > cMaxCascradiuscut || track.cascTransRadius() < cMinCascradiuscut)
return false;
// if (std::abs(track.mXi() - XiMass) > cMasswindowCasccut)
// return false;
Expand Down

0 comments on commit d75cb9e

Please sign in to comment.