cosmotool/sample/testReadFlash.cpp

18 lines
294 B
C++
Raw Normal View History

2011-06-06 16:09:39 +02:00
#include <iostream>
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "loadFlash.hpp"
using namespace CosmoTool;
using namespace std;
int main () {
char* filename = "lss_read_hdf5_chk_0000";
SimuData* data = CosmoTool::loadFlashMulti(filename, 0, 0);
return 0;
}