1 #include "Alignment/Geners/interface/CatalogIO.hh" 5 const unsigned compressionCode,
6 const unsigned mergeLevel,
7 const std::vector<std::string> &annotations,
9 const unsigned formatId) {
10 os.seekp(0, std::ios_base::beg);
12 const unsigned endianness = 0x01020304;
13 const unsigned char sizelong =
sizeof(long);
15 write_pod(os, formatId);
16 write_pod(os, endianness);
17 write_pod(os, sizelong);
18 write_pod(os, compressionCode);
19 write_pod(os, mergeLevel);
20 write_pod_vector(os, annotations);
22 return !os.fail() &&
catalog.classId().write(os) &&
catalog.write(os);
bool writeBinaryCatalog(std::ostream &os, const unsigned compressionCode, const unsigned mergeLevel, const std::vector< std::string > &annotations, const AbsCatalog &catalog, const unsigned formatId)