We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e57a6ed commit e5768cdCopy full SHA for e5768cd
Detectors/Upgrades/ALICE3/TRK/simulation/include/TRKSimulation/ChipDigitsContainer.h
@@ -29,6 +29,12 @@ class ChipDigitsContainer : public o2::itsmft::ChipDigitsContainer
29
30
using Segmentation = SegmentationChip;
31
32
+ /// Get global ordering key made of readout frame, column and row
33
+ static ULong64_t getOrderingKey(UInt_t roframe, UShort_t row, UShort_t col)
34
+ {
35
+ return (static_cast<ULong64_t>(roframe) << (8 * sizeof(UInt_t))) + (static_cast<ULong64_t>(col) << (8 * sizeof(Short_t))) + row;
36
+ }
37
+
38
ClassDefNV(ChipDigitsContainer, 1);
39
};
40
0 commit comments