Moved source codes into new subdirectories to make the organization cleaner. Created new CMakeLists accordingly.

This commit is contained in:
Guilhem Lavaux 2012-10-30 13:55:29 -04:00
parent f6fae36329
commit 4182c30485
13 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,37 @@
#ifndef __LOAD_ZOBOV_HPP
#define __LOAD_ZOBOV_HPP
#include <vector>
struct ZobovZone
{
std::vector<int> pId;
};
struct ZobovVoid
{
std::vector<int> zId;
float proba;
int numParticles, coreParticle;
float volume;
};
struct ZobovRep
{
std::vector<ZobovZone> allZones;
std::vector<ZobovVoid> allVoids;
std::vector<float> particleVolume;
};
struct ZobovParticle
{
float x, y, z;
};
bool loadZobov(const char *descName,
const char *adjName, const char *voidName,
const char *volName, ZobovRep& z);
bool loadZobovParticles(const char *fname, std::vector<ZobovParticle>& particles);
#endif