VTK  9.2.6
vtkSLACParticleReader.h
Go to the documentation of this file.
1// -*- c++ -*-
2/*=========================================================================
3
4 Program: Visualization Toolkit
5 Module: vtkSLACParticleReader.h
6
7 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
8 All rights reserved.
9 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
10
11 This software is distributed WITHOUT ANY WARRANTY; without even
12 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13 PURPOSE. See the above copyright notice for more information.
14
15=========================================================================*/
16
17/*-------------------------------------------------------------------------
18 Copyright 2008 Sandia Corporation.
19 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
20 the U.S. Government retains certain rights in this software.
21-------------------------------------------------------------------------*/
22
40
41#ifndef vtkSLACParticleReader_h
42#define vtkSLACParticleReader_h
43
44#include "vtkIONetCDFModule.h" // For export macro
46
48class vtkIdTypeArray;
51
52class VTKIONETCDF_EXPORT vtkSLACParticleReader : public vtkPolyDataAlgorithm
53{
54public:
57 void PrintSelf(ostream& os, vtkIndent indent) override;
58
61
65 static int CanReadFile(VTK_FILEPATH const char* filename);
66
67protected:
70
71 char* FileName;
72
74 vtkInformationVector* outputVector) override;
75
76 int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
77 vtkInformationVector* outputVector) override;
78
86 virtual vtkIdType GetNumTuplesInVariable(int ncFD, int varId, int expectedNumComponents);
87
88private:
90 void operator=(const vtkSLACParticleReader&) = delete;
91};
92
93#endif // vtkSLACParticleReader_h
Store on/off settings for data arrays, etc.
dynamic, self-adjusting array of vtkIdType
a simple class to control print indentation
Definition vtkIndent.h:40
Key for integer values in vtkInformation.
Key for vtkObjectBase values.
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
static int CanReadFile(VTK_FILEPATH const char *filename)
Returns true if the given file can be read by this reader.
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSetFilePathMacro(FileName)
static vtkSLACParticleReader * New()
vtkGetFilePathMacro(FileName)
virtual vtkIdType GetNumTuplesInVariable(int ncFD, int varId, int expectedNumComponents)
Convenience function that checks the dimensions of a 2D netCDF array that is supposed to be a set of ...
~vtkSLACParticleReader() override
int vtkIdType
Definition vtkType.h:332
#define VTK_FILEPATH