Go to the documentation of this file.
25 #ifndef vtkADIOSReader_h
26 #define vtkADIOSReader_h
35 #include "vtkSetGet.h"
40 #include "vtkIOADIOSModule.h"
73 int CanReadFile(
const char*
name);
79 vtkSetStringMacro(FileName);
80 vtkGetStringMacro(FileName);
103 vtkSetStringMacro(ReadMethodArguments);
104 vtkGetStringMacro(ReadMethodArguments);
126 bool OpenAndReadMetadata(
void);
131 void WaitForReads(
void);
138 T* ReadObject(
const std::string& path,
int blockId);
185 std::map<std::pair<int, size_t>,
186 std::pair<int, vtkSmartPointer<vtkObject> > >
216 template<
typename TObjectFun,
typename TObjectData,
typename TReturn>
217 void AddPostReadOperation(TObjectData*, TReturn (TObjectFun::*)());
219 template<
typename TObjectFun,
typename TObjectData,
typename TReturn,
220 typename TArg1Fun,
typename TArg1Data>
221 void AddPostReadOperation(TObjectData*,
222 TReturn (TObjectFun::*)(TArg1Fun), TArg1Data);
224 template<
typename TObjectFun,
typename TObjectData,
typename TReturn,
225 typename TArg1Fun,
typename TArg1Data,
226 typename TArg2Fun,
typename TArg2Data>
227 void AddPostReadOperation(TObjectData*,
228 TReturn (TObjectFun::*)(TArg1Fun, TArg2Fun),
229 TArg1Data, TArg2Data);
231 template<
typename TObjectFun,
typename TObjectData,
typename TReturn,
232 typename TArg1Fun,
typename TArg1Data,
233 typename TArg2Fun,
typename TArg2Data,
234 typename TArg3Fun,
typename TArg3Data>
235 void AddPostReadOperation(TObjectData*,
236 TReturn (TObjectFun::*)(TArg1Fun, TArg2Fun, TArg3Fun),
237 TArg1Data, TArg2Data, TArg3Data);
267 #define DECLARE_EXPLICIT(T) \
268 template<> T* vtkADIOSReader::ReadObject<T>(const std::string& path, \
273 #undef DECLARE_EXPLICIT
vtkMultiProcessController * Controller
std::vector< std::map< std::string, size_t > > BlockStepIndexIdMap
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetReadMethodDIMES()
represent and manipulate attribute data in a dataset
void SetReadMethodBPAggregate()
Superclass for algorithms that produce only data object as output.
char * ReadMethodArguments
abstract superclass for arrays of numeric data
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
represent and manipulate fields of data
void SetReadMethodFlexPath()
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
std::vector< double > TimeSteps
Multiprocessing communication superclass.
A directory tree structure holding ADIOS data.
topologically and geometrically regular array of data
a simple class to control print indentation
object to represent cell connectivity
std::map< double, size_t > TimeStepsIndex
#define DECLARE_EXPLICIT(T)
std::map< std::pair< int, size_t >, std::pair< int, vtkSmartPointer< vtkObject > > > ObjectCache
abstract class to specify dataset behavior
int ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
see vtkAlgorithm for details
concrete dataset represents vertices, lines, polygons, and triangle strips
static vtkDataObjectAlgorithm * New()
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
dataset represents arbitrary combinations of all possible cell types
void SetReadMethodDataSpaces()
int RequestNumberOfPieces
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
general representation of visualization data
std::vector< std::vector< std::vector< int > > > BlockStepIndex
std::queue< BaseFunctor * > PostReadOperations