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
3 changes: 3 additions & 0 deletions Analysis/DataModel/src/dumpDataModel.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -165,5 +165,8 @@ edge[dir=back, arrowtail=empty]
dumpTable<Jets>(true, StyleType::BLUE);
dumpTable<JetConstituents>(true, StyleType::BLUE);
dumpTable<UnassignedTracks>();
dumpTable<McCollisions>();
dumpTable<McLabels>();
dumpTable<McParticles>();
fmt::printf("%s\n", R"(})");
}
6 changes: 3 additions & 3 deletions Framework/Core/include/Framework/AnalysisDataModel.h
Original file line number Diff line number Diff line change
Expand Up @@ -420,16 +420,16 @@ using McCollision = McCollisions::iterator;

namespace mclabel
{
DECLARE_SOA_COLUMN(Label, label, int);
DECLARE_SOA_COLUMN(LabelMask, labelMask, uint16_t);
DECLARE_SOA_COLUMN(Lbl, lbl, int);
DECLARE_SOA_COLUMN(LblMask, lblMask, uint16_t);
/// Bit mask to indicate detector mismatches (bit ON means mismatch)
/// Bit 0-6: mismatch at ITS layer
/// Bit 7-9: # of TPC mismatches in the ranges 0, 1, 2-3, 4-7, 8-15, 16-31, 32-63, >64
/// Bit 10: TRD, bit 11: TOF
} // namespace mclabel

DECLARE_SOA_TABLE(McLabels, "AOD", "MCLABEL", o2::soa::Index<>,
mclabel::Label, mclabel::LabelMask);
mclabel::Lbl, mclabel::LblMask);
using McLabel = McLabels::iterator;

namespace mcparticle
Expand Down