Jpp  17.2.0
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TimeSlice.cc
Go to the documentation of this file.
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 }
unsigned char ars_id_
ARS identifier.
Definition: TimeSlice.hh:26
bool IsReading()
Definition: JRoot.hh:23
Definition: JRoot.hh:21
unsigned short lcm_id_
LCM identifier.
Definition: TimeSlice.hh:24
unsigned short numberOfItems_
number of items
Definition: TimeSlice.hh:30
unsigned char data_type_
data type
Definition: TimeSlice.hh:28
unsigned short numberOfItemsOrg_
number of items original
Definition: TimeSlice.hh:162