Jpp 19.3.0-rc.1
the software that should make you happy
Loading...
Searching...
No Matches
TimeSlice.cc
Go to the documentation of this file.
2#include "TBuffer.h"
3
4void 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
21void 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 short numberOfItemsOrg_
number of items original
Definition TimeSlice.hh:162
unsigned short numberOfItems_
number of items
Definition TimeSlice.hh:30
unsigned short lcm_id_
LCM identifier.
Definition TimeSlice.hh:24
unsigned char data_type_
data type
Definition TimeSlice.hh:28
unsigned char ars_id_
ARS identifier.
Definition TimeSlice.hh:26
bool IsReading()
Definition JROOT_t.hh:23