Add writing and reading of RecSummary
Requires !3671 (merged) and Rec!3007 (merged) and Moore!1649 (merged)
Needed for Rec#366 (closed)
More description can be found in Moore!1649 (merged). Here the packers and unpackers for a RecSummary object are added.
The packing and unpacking of the RecSummary is handled by PersistRecoConf.
The current packing and serialization is relatively trivial as the underlying data structure of a RecSummary
is std::vector<std::pair<int,int>>
where the first int is a key and the second the value. The serialized structure is currently std::vector<int>
with the structure key, value, key, value,... .
Edited by Christoph Hasse