We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e2b060 commit f48b726Copy full SHA for f48b726
1 file changed
Framework/Core/include/Framework/MessageSet.h
@@ -31,20 +31,8 @@ namespace o2::framework
31
/// O2 message model. For this purpose, also the pair index is filled and can
32
/// be used to access header and payload associated with a pair
33
struct 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
- };
39
// linear storage of messages
40
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
48
49
MessageSet()
50
: messages()
0 commit comments