Jpp
TimeSlice.cc
Go to the documentation of this file.
1 #include "TimeSlice.hh"
2 #include "TBuffer.h"
3 
4 void Summary_Frame::Streamer(TBuffer &R__b)
5 {
6  // Stream an object of class Summary_Frame.
7 
8  if (R__b.IsReading()) {
9  R__b >> lcm_id_;
10  R__b >> ars_id_;
11  R__b >> data_type_;
12  R__b >> numberOfItems_;
13  } else {
14  R__b << lcm_id_;
15  R__b << ars_id_;
16  R__b << data_type_;
17  R__b << numberOfItems_;
18  }
19 }
20 
21 void ExtendedSummary_Frame::Streamer(TBuffer &R__b)
22 {
23  // Stream an object of class Summary_Frame.
24 
25  if (R__b.IsReading()) {
26  R__b >> lcm_id_;
27  R__b >> ars_id_;
28  R__b >> data_type_;
29  R__b >> numberOfItems_;
30  R__b >> numberOfItemsOrg_;
31  } else {
32  R__b << lcm_id_;
33  R__b << ars_id_;
34  R__b << data_type_;
35  R__b << numberOfItems_;
36  R__b << numberOfItemsOrg_;
37  }
38 }
Summary_Frame::lcm_id_
unsigned short lcm_id_
LCM identifier.
Definition: TimeSlice.hh:24
Summary_Frame::numberOfItems_
unsigned short numberOfItems_
number of items
Definition: TimeSlice.hh:30
TimeSlice.hh
Summary_Frame::data_type_
unsigned char data_type_
data type
Definition: TimeSlice.hh:28
TBuffer
Definition: JRoot.hh:21
TBuffer::IsReading
bool IsReading()
Definition: JRoot.hh:23
ExtendedSummary_Frame::numberOfItemsOrg_
unsigned short numberOfItemsOrg_
number of items original
Definition: TimeSlice.hh:162
Summary_Frame::ars_id_
unsigned char ars_id_
ARS identifier.
Definition: TimeSlice.hh:26