2008-12-02 18:00:28 +01:00
|
|
|
#ifndef _LOAD_RAMSES_HPP
|
|
|
|
#define _LOAD_RAMSES_HPP
|
|
|
|
|
2009-01-10 02:10:30 +01:00
|
|
|
#include "load_data.hpp"
|
2010-09-22 22:33:06 +02:00
|
|
|
#include "loadSimu.hpp"
|
2008-12-02 18:00:28 +01:00
|
|
|
|
|
|
|
namespace CosmoTool {
|
|
|
|
|
2009-08-26 18:54:35 +02:00
|
|
|
GadgetData *loadRamses(const char *name, bool quiet = false);
|
2012-06-26 21:40:19 +02:00
|
|
|
PurePositionData *loadRamsesPosition(const char *fname, int id, bool quiet = false, bool dp = true);
|
2009-09-29 23:32:59 +02:00
|
|
|
PhaseSpaceData *loadRamsesPhase(const char *fname, int id, bool quiet = false);
|
2009-11-07 05:12:31 +01:00
|
|
|
|
2012-06-28 15:36:28 +02:00
|
|
|
PhaseSpaceDataID *loadRamsesPhase1(const char *fname, int id, int cpuid, bool dp = true, bool quiet = false);
|
2010-09-22 22:33:06 +02:00
|
|
|
|
2012-06-28 15:36:28 +02:00
|
|
|
SimuData *loadRamsesSimu(const char *basename, int id, int cpuid, bool dp, int flags);
|
2008-12-02 18:00:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|