Skip to content

Commit 051c8b8

Browse files
committed
Fix shared pointer declaration
1 parent 5ce119d commit 051c8b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

EventFiltering/PWGHF/HFFilter.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ struct HfFilter { // Main struct for HF triggers
238238
std::shared_ptr<TH1> hProcessedEvents;
239239

240240
// QA histos
241-
std::shared_ptr<TH1> hN2ProngCharmCand, hN3ProngCharmCand, hMassVsCtCharmBaryonToXiPiPi;
241+
std::shared_ptr<TH1> hN2ProngCharmCand, hN3ProngCharmCand;
242242
std::array<std::shared_ptr<TH1>, kNCharmParticles> hCharmHighPt{};
243243
std::array<std::shared_ptr<TH1>, kNCharmParticles> hCharmProtonKstarDistr{};
244244
std::array<std::shared_ptr<TH1>, kNCharmParticles> hCharmDeuteronKstarDistr{};
@@ -249,7 +249,7 @@ struct HfFilter { // Main struct for HF triggers
249249
std::array<std::shared_ptr<TH1>, kNCharmParticles> hBDTScorePrompt{};
250250
std::array<std::shared_ptr<TH1>, kNCharmParticles> hBDTScoreNonPrompt{};
251251
std::array<std::shared_ptr<TH2>, kNV0> hArmPod{};
252-
std::shared_ptr<TH2> hV0Selected;
252+
std::shared_ptr<TH2> hV0Selected, hMassVsCtCharmBaryonToXiPiPi;
253253
std::array<std::shared_ptr<TH2>, 2> hMassXi{}; // not tracked and tracked
254254
std::array<std::shared_ptr<TH2>, kNBeautyParticles> hCpaVsPtB{};
255255
std::array<std::shared_ptr<TH2>, kNBeautyParticles> hDecayLengthVsPtB{};

0 commit comments

Comments
 (0)