VAPOR3 3.9.4
PythonDataMgr.h
Go to the documentation of this file.
1#include <vapor/DataMgr.h>
2
3#pragma once
4
5namespace VAPoR {
6
7class DCRAM;
8
12
14public:
15 PythonDataMgr(string format, size_t mem_size, int nthreads = 0);
16 virtual ~PythonDataMgr();
17
18 void AddRegularData(string name, const float *buf, vector<int> dims);
19 DCRAM *GetDC() const;
20 void ClearCache(string varname);
21};
22
23}
DCRAM is a virtual data collection used to allow data to be loaded from ram. Specifically,...
Definition: DCRAM.h:22
A cache based data reader.
Definition: DataMgr.h:110
DataMgr for data loaded from python scripts.
Definition: PythonDataMgr.h:13
void AddRegularData(string name, const float *buf, vector< int > dims)
PythonDataMgr(string format, size_t mem_size, int nthreads=0)
void ClearCache(string varname)
DCRAM * GetDC() const
virtual ~PythonDataMgr()
#define VDF_API
Definition: common.h:73