Renamed directory mytools to pipeline_tools

This commit is contained in:
Guilhem Lavaux 2012-10-30 11:54:42 -04:00
parent b5ee1cc7a6
commit f6fae36329
14 changed files with 0 additions and 0 deletions

View file

@ -1,24 +0,0 @@
#ifndef _PARTICLE_INFO_HEADER_HPP
#define _PARTICLE_INFO_HEADER_HPP
#include <vector>
#include <string>
struct ParticleData {
float x, y, z;
};
typedef std::vector<ParticleData> ParticleVector;
struct ParticleInfo
{
ParticleVector particles;
float ranges[3][2];
float length[3];
};
bool loadParticleInfo(ParticleInfo& info,
const std::string& particles,
const std::string& extra_info);
#endif