Orion
high-rate readout
options.hpp
Go to the documentation of this file.
1 
5 #pragma once
6 
7 namespace itk::itkpix::endec {
8 
10  struct Options {
11  bool en_chip_id = true;
12  bool en_l1id = false;
13  bool en_bcid = false;
14  bool en_crc = false;
15  bool en_eos = true;
16  bool drop_tot = false;
17  bool raw_hitmap = false;
18  };
19 
20 } // itk::itkpix::endec
Common encoder/decoder options.
Definition: options.hpp:10
bool en_crc
En. BCID.
Definition: options.hpp:14
bool raw_hitmap
Drop ToT.
Definition: options.hpp:17
bool drop_tot
EoS marker.
Definition: options.hpp:16
bool en_eos
En. CRC.
Definition: options.hpp:15
bool en_bcid
En. Trig ID.
Definition: options.hpp:13
bool en_l1id
En. Chip ID.
Definition: options.hpp:12