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"
|
2021-01-04 21:49:54 -05:00
|
|
|
#include "common/MPI.h"
|
2019-11-08 10:06:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
Array<uint8_t> readMicroCT( const std::string& filename );
|
|
|
|
|
|
2021-01-04 21:49:54 -05:00
|
|
|
Array<uint8_t> readMicroCT( const Database& domain, const Utilities::MPI& comm );
|
2019-11-08 10:06:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|