2019-11-08 10:06:07 -05:00
|
|
|
#ifndef READMICROCT_H
|
|
|
|
|
#define READMICROCT_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "common/Array.h"
|
|
|
|
|
#include "common/Communication.h"
|
|
|
|
|
#include "common/Database.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Array<uint8_t> readMicroCT( const std::string& filename );
|
|
|
|
|
|
2020-03-17 21:44:45 -04:00
|
|
|
Array<uint8_t> readMicroCT( const Database& domain, MPI_Comm comm );
|
2019-11-08 10:06:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|