VTK  9.4.20241108
vtkDGTranscribeCellGridCells.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
10#ifndef vtkDGTranscribeCellGridCells_h
11#define vtkDGTranscribeCellGridCells_h
12
13#include "vtkFiltersCellGridModule.h" // for export macro
14
16#include "vtkCellGridToUnstructuredGrid.h" // for inheritance
17
18VTK_ABI_NAMESPACE_BEGIN
19class vtkCellMetadata;
20class vtkDGCell;
21
22class VTKFILTERSCELLGRID_EXPORT vtkDGTranscribeCellGridCells
23 : public vtkCellGridResponder<vtkCellGridToUnstructuredGrid::Query>
24{
25public:
28 vtkTypeMacro(
30 void PrintSelf(ostream& os, vtkIndent indent) override;
31
32 bool Query(
33 TranscribeQuery* query, vtkCellMetadata* cellType, vtkCellGridResponders* caches) override;
34
35protected:
37 ~vtkDGTranscribeCellGridCells() override = default;
38
40 TranscribeQuery* request, vtkDGCell* cellType, vtkCellGridResponders* caches);
42 TranscribeQuery* request, vtkDGCell* cellType, vtkCellGridResponders* caches);
43
44private:
46 void operator=(const vtkDGTranscribeCellGridCells&) = delete;
47};
48
49VTK_ABI_NAMESPACE_END
50#endif // vtkDGTranscribeCellGridCells_h
51// VTK-HeaderTest-Exclude: vtkDGTranscribeCellGridCells.h
Respond to a query on one particular type of cell.
A container that holds objects able to respond to queries specialized for particular vtkCellMetadata ...
A query corresponding to this algorithm.
Metadata for a particular type of cell (finite element).
Base class for a discontinuous Galerkin cells of all shapes.
Definition vtkDGCell.h:44
Respond to a query on one particular type of cell.
~vtkDGTranscribeCellGridCells() override=default
void GeneratePointData(TranscribeQuery *request, vtkDGCell *cellType, vtkCellGridResponders *caches)
static vtkDGTranscribeCellGridCells * New()
bool Query(TranscribeQuery *query, vtkCellMetadata *cellType, vtkCellGridResponders *caches) override
void GenerateConnectivity(TranscribeQuery *request, vtkDGCell *cellType, vtkCellGridResponders *caches)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition vtkIndent.h:108