#ifndef __LOAD_ZOBOV_HPP #define __LOAD_ZOBOV_HPP #include struct ZobovZone { std::vector pId; }; struct ZobovVoid { std::vector zId; float proba; int numParticles, coreParticle; float volume; }; struct ZobovRep { std::vector allZones; std::vector allVoids; std::vector particleVolume; }; bool loadZobov(const char *descName, const char *adjName, const char *voidName, const char *volName, ZobovRep& z); #endif