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
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ class ChipDigitsContainer : public o2::itsmft::ChipDigitsContainer

using Segmentation = SegmentationChip;

/// Get global ordering key made of readout frame, column and row
static ULong64_t getOrderingKey(UInt_t roframe, UShort_t row, UShort_t col)
{
return (static_cast<ULong64_t>(roframe) << (8 * sizeof(UInt_t))) + (static_cast<ULong64_t>(col) << (8 * sizeof(Short_t))) + row;
}

ClassDefNV(ChipDigitsContainer, 1);
};

Expand Down