Skip to content

Commit 58d7d27

Browse files
committed
fix
1 parent 26e4313 commit 58d7d27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ALICE3/TableProducer/alice3MulticharmFinder.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ using namespace o2::framework::expressions;
6666
// #define biton(var, nbit) ((var) |= (static_cast<uint32_t>(1) << (nbit)))
6767
// #define bitoff(var, nbit) ((var) &= ~(static_cast<uint32_t>(1) << (nbit))) //((a) &= ~(1ULL<<(b)))
6868
#define BIT_CHECK(var, nbit) ((var) & (static_cast<uint32_t>(1) << (nbit)))
69-
#define getHist(type, name) std::get<std::shared_ptr<type>>(histPointers[name])
69+
#define GET_HIST(type, name) std::get<std::shared_ptr<type>>(histPointers[name])
7070

7171
using Alice3Tracks = soa::Join<aod::Tracks, aod::TracksCov, aod::Alice3DecayMaps, aod::McTrackLabels, aod::TracksDCA, aod::TracksExtraA3, aod::UpgradeTofs, aod::UpgradeTofExpectedTimes, aod::UpgradeRichs, aod::UpgradeRichSignals, aod::OTFLUTConfigId>;
7272

@@ -794,7 +794,7 @@ struct Alice3MulticharmFinder {
794794

795795
histos.fill(HIST("hCharmBuilding"), 3.0f);
796796
histos.fill(HIST("hMassXiCC"), thisXiCCcandidate.mass);
797-
getHist(TH1, histPath + "hMassXiCC")->Fill(thisXiCCcandidate.mass);
797+
GET_HIST(TH1, histPath + "hMassXiCC")->Fill(thisXiCCcandidate.mass);
798798

799799
histos.fill(HIST("hPtXiCC"), thisXiCCcandidate.pt);
800800
histos.fill(HIST("hEtaXiCC"), thisXiCCcandidate.eta);

0 commit comments

Comments
 (0)