You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
C
76 lines
2.1 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkEnSightMasterServerReader.h
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
/**
|
||
|
* @class vtkEnSightMasterServerReader
|
||
|
* @brief reader for compound EnSight files
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkEnSightMasterServerReader_h
|
||
|
#define vtkEnSightMasterServerReader_h
|
||
|
|
||
|
#include "vtkGenericEnSightReader.h"
|
||
|
#include "vtkIOEnSightModule.h" // For export macro
|
||
|
|
||
|
class vtkCollection;
|
||
|
|
||
|
class VTKIOENSIGHT_EXPORT vtkEnSightMasterServerReader : public vtkGenericEnSightReader
|
||
|
{
|
||
|
public:
|
||
|
vtkTypeMacro(vtkEnSightMasterServerReader, vtkGenericEnSightReader);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
static vtkEnSightMasterServerReader* New();
|
||
|
|
||
|
/**
|
||
|
* Determine which file should be read for piece
|
||
|
*/
|
||
|
int DetermineFileName(int piece);
|
||
|
|
||
|
//@{
|
||
|
/**
|
||
|
* Get the file name that will be read.
|
||
|
*/
|
||
|
vtkGetStringMacro(PieceCaseFileName);
|
||
|
//@}
|
||
|
|
||
|
//@{
|
||
|
/**
|
||
|
* Set or get the current piece.
|
||
|
*/
|
||
|
vtkSetMacro(CurrentPiece, int);
|
||
|
vtkGetMacro(CurrentPiece, int);
|
||
|
//@}
|
||
|
|
||
|
int CanReadFile(const char* fname) override;
|
||
|
|
||
|
protected:
|
||
|
vtkEnSightMasterServerReader();
|
||
|
~vtkEnSightMasterServerReader() override;
|
||
|
|
||
|
int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
|
||
|
int RequestInformation(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
|
||
|
|
||
|
vtkSetStringMacro(PieceCaseFileName);
|
||
|
char* PieceCaseFileName;
|
||
|
int MaxNumberOfPieces;
|
||
|
int CurrentPiece;
|
||
|
|
||
|
private:
|
||
|
vtkEnSightMasterServerReader(const vtkEnSightMasterServerReader&) = delete;
|
||
|
void operator=(const vtkEnSightMasterServerReader&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|