File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -31,20 +31,8 @@ namespace o2::framework
3131// / O2 message model. For this purpose, also the pair index is filled and can
3232// / be used to access header and payload associated with a pair
3333struct MessageSet {
34- struct Index {
35- Index (size_t p, size_t s) : position(p), size(s) {}
36- size_t position = 0 ;
37- size_t size = 0 ;
38- };
3934 // linear storage of messages
4035 std::vector<fair::mq::MessagePtr> messages;
41- struct PairMapping {
42- PairMapping (size_t partId, size_t payloadId) : partIndex(partId), payloadIndex(payloadId) {}
43- // O2 message where the pair is located in
44- size_t partIndex = 0 ;
45- // payload index within the O2 message
46- size_t payloadIndex = 0 ;
47- };
4836
4937 MessageSet ()
5038 : messages()
You can’t perform that action at this time.
0 commit comments