"...git@code.ornl.gov:mantidproject/mantid.git" did not exist on "3a6c8e1acd71eb4e14e76b2878558c19aa010a55"
Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* EnginePy.cpp
*
* Created on: Mar 15, 2017
* Author: wgodoy
*/
#include "EnginePy.h"
#include "adiosPyFunctions.h"
namespace adios
{
void EnginePy::WritePy( VariablePy<double>& variable, const np::ndarray& array )
{
const double* values = reinterpret_cast<const double*>( array.get_data() );
m_Engine->Write( variable, values );
}
void EnginePy::WritePy( VariablePy<float>& variable, const np::ndarray& array )
{
const float* values = reinterpret_cast<const float*>( array.get_data() );
m_Engine->Write( variable, values );
}
void EnginePy::GetType( ) const
{
std::cout << "Engine type " << m_Engine->m_EngineType << "\n";
}
void EnginePy::Close( )
{
m_Engine->Close( -1 );
}
} //end namespace