![]() |
Project
|
Runtime dispatcher interface for probability model definitions. More...
#include <CodingModelDispatcher.h>
Classes | |
class | addWeightFctr |
functor to add weight to probability model at runtime container level More... | |
class | decodeFctr |
Functor to execute decoding on runtime container level. More... | |
class | encodeFctr |
functor to execute encoding on runtime container level More... | |
class | generateFctr |
class | getCodingDirectionFctr |
class | initFctr |
class | readFctr |
read functor More... | |
class | writeFctr |
write functor More... | |
Public Types | |
using | self_type = CodingModelDispatcher< ModelDefinition > |
using | definition_type = typename mpl::make_mpl_vector< ModelDefinition >::type |
using | container_type = typename create_rtc< definition_type, RuntimeContainer<> >::type |
using | code_type = typename container_type::wrapped_type::code_type |
Public Member Functions | |
CodingModelDispatcher () | |
~CodingModelDispatcher ()=default | |
container_type & | operator* () |
return highest stage of runtime container | |
template<typename ValueType , typename WeightType > | |
bool | addWeight (ValueType v, WeightType w, bool switchToNextModel=true) |
int | init () |
int | generate () |
template<typename CodeType , typename ValueType > | |
bool | encode (ValueType v, CodeType &code, uint16_t &codeLength, bool switchToNextModel=true) |
template<typename ValueType , typename CodeType > | |
bool | decode (ValueType &v, CodeType code, uint16_t &codeLength, bool switchToNextModel=true) |
bool | getCodingDirection () |
int | write (const char *filename=nullptr) |
int | read (const char *filename) |
Static Public Member Functions | |
static int | getNumberOfModels () |
get the number of models in the definition | |
Runtime dispatcher interface for probability model definitions.
interface
ModelDefinition single coding model or mpl sequence of models
TODO:
Definition at line 51 of file CodingModelDispatcher.h.
using o2::data_compression::CodingModelDispatcher< ModelDefinition >::code_type = typename container_type::wrapped_type::code_type |
Definition at line 68 of file CodingModelDispatcher.h.
using o2::data_compression::CodingModelDispatcher< ModelDefinition >::container_type = typename create_rtc<definition_type, RuntimeContainer<> >::type |
Definition at line 66 of file CodingModelDispatcher.h.
using o2::data_compression::CodingModelDispatcher< ModelDefinition >::definition_type = typename mpl::make_mpl_vector<ModelDefinition>::type |
Definition at line 62 of file CodingModelDispatcher.h.
using o2::data_compression::CodingModelDispatcher< ModelDefinition >::self_type = CodingModelDispatcher<ModelDefinition> |
Definition at line 57 of file CodingModelDispatcher.h.
|
inline |
Definition at line 54 of file CodingModelDispatcher.h.
|
default |
|
inline |
add weight to current model
Dispatcher increments to the next model definition after decoding if parameter switchToNextModel is true.
Definition at line 107 of file CodingModelDispatcher.h.
|
inline |
Decode a code sequence Code direction can be either from MSB to LSB or LSB to MSB, controlled by template parameter orderMSB of the probability model.
Dispatcher increments to the next model definition after decoding if parameter switchToNextModel is true.
Definition at line 255 of file CodingModelDispatcher.h.
|
inline |
Encode a value
Dispatcher increments to the next model definition after decoding if parameter switchToNextModel is true.
Definition at line 212 of file CodingModelDispatcher.h.
|
inline |
TODO: maybe 'generate' is not the appropriate name
Definition at line 174 of file CodingModelDispatcher.h.
|
inline |
Get coding direction for model at current position
Definition at line 278 of file CodingModelDispatcher.h.
|
inlinestatic |
get the number of models in the definition
Definition at line 71 of file CodingModelDispatcher.h.
|
inline |
init dispatcher and models
Definition at line 141 of file CodingModelDispatcher.h.
|
inline |
return highest stage of runtime container
Definition at line 74 of file CodingModelDispatcher.h.
|
inline |
Read configuration
TODO: introduce a general storage policy, a text file is used for now
Definition at line 359 of file CodingModelDispatcher.h.
|
inline |
Write configuration
TODO: introduce a general storage policy, a text file is used for now
Definition at line 311 of file CodingModelDispatcher.h.