1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/*=========================================================================
Program: ParaView
Module: vtkPVTemporalDataInformation.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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.
=========================================================================*/
// .NAME vtkPVTemporalDataInformation
// .SECTION Description
// vtkPVTemporalDataInformation is used to gather data information over time.
// This information provided by this class is a sub-set of vtkPVDataInformation
// and hence this is not directly a subclass of vtkPVDataInformation. It
// internally uses vtkPVDataInformation to collect information about each
// timestep.
#ifndef vtkPVTemporalDataInformation_h
#define vtkPVTemporalDataInformation_h
#include "vtkPVClientServerCoreCoreModule.h" //needed for exports
#include "vtkPVInformation.h"
class vtkPVArrayInformation;
class vtkPVDataSetAttributesInformation;
class VTKPVCLIENTSERVERCORECORE_EXPORT vtkPVTemporalDataInformation : public vtkPVInformation
{
public:
static vtkPVTemporalDataInformation* New();
vtkTypeMacro(vtkPVTemporalDataInformation, vtkPVInformation);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Port number controls which output port the information is gathered from.
// This is only applicable when the vtkObject from which the information being
// gathered is a vtkAlgorithm. Set it to -1(default), to return the classname
// of the vtkAlgorithm itself.
// This is the only parameter that can be set on the client-side before
// gathering the information.
vtkSetMacro(PortNumber, int);
// Description:
// Transfer information about a single object into this object.
// This expects the \c object to be a vtkAlgorithmOutput.
virtual void CopyFromObject(vtkObject* object);
// Description:
// Merge another information object. Calls AddInformation(info, 0).
virtual void AddInformation(vtkPVInformation* info);
// Description:
// Manage a serialized version of the information.
virtual void CopyToStream(vtkClientServerStream*);
virtual void CopyFromStream(const vtkClientServerStream*);
// Description:
// Serialize/Deserialize the parameters that control how/what information is
// gathered. This are different from the ivars that constitute the gathered
// information itself. For example, PortNumber on vtkPVDataInformation
// controls what output port the data-information is gathered from.
virtual void CopyParametersToStream(vtkMultiProcessStream&);
virtual void CopyParametersFromStream(vtkMultiProcessStream&);
// Description:
// Initializes the information object.
void Initialize();
// Description:
// Returns the number of timesteps this information was gathered from.
vtkGetMacro(NumberOfTimeSteps, int);
// Description:
// Returns the time-range this information was gathered from.
vtkGetVector2Macro(TimeRange, double);
// Description:
// Access to information about point/cell/vertex/edge/row data.
vtkGetObjectMacro(PointDataInformation, vtkPVDataSetAttributesInformation);
vtkGetObjectMacro(CellDataInformation, vtkPVDataSetAttributesInformation);
vtkGetObjectMacro(VertexDataInformation, vtkPVDataSetAttributesInformation);
vtkGetObjectMacro(EdgeDataInformation, vtkPVDataSetAttributesInformation);
vtkGetObjectMacro(RowDataInformation, vtkPVDataSetAttributesInformation);
// Description:
// Convenience method to get the attribute information given the attribute
// type. attr can be vtkDataObject::FieldAssociations or
// vtkDataObject::AttributeTypes (since both are identical).
vtkPVDataSetAttributesInformation* GetAttributeInformation(int attr);
// Description:
// Access to information about field data, if any.
vtkGetObjectMacro(FieldDataInformation,vtkPVDataSetAttributesInformation);
// Description:
// Method to find and return attribute array information for a particular
// array for the given attribute type if one exists.
// Returns NULL if none is found.
// \c fieldAssociation can be vtkDataObject::FIELD_ASSOCIATION_POINTS,
// vtkDataObject::FIELD_ASSOCIATION_CELLS etc.
// (use vtkDataObject::FIELD_ASSOCIATION_NONE for field data) (or
// vtkDataObject::POINT, vtkDataObject::CELL, vtkDataObject::FIELD).
vtkPVArrayInformation* GetArrayInformation(
const char* arrayname, int fieldAssociation);
protected:
vtkPVTemporalDataInformation();
~vtkPVTemporalDataInformation();
vtkPVDataSetAttributesInformation* PointDataInformation;
vtkPVDataSetAttributesInformation* CellDataInformation;
vtkPVDataSetAttributesInformation* FieldDataInformation;
vtkPVDataSetAttributesInformation* VertexDataInformation;
vtkPVDataSetAttributesInformation* EdgeDataInformation;
vtkPVDataSetAttributesInformation* RowDataInformation;
double TimeRange[2];
int NumberOfTimeSteps;
int PortNumber;
private:
vtkPVTemporalDataInformation(const vtkPVTemporalDataInformation&); // Not implemented
void operator=(const vtkPVTemporalDataInformation&); // Not implemented
};
#endif
|