------------------------------------------------------------------------------
| 40 | |
| 41 | //------------------------------------------------------------------------------ |
| 42 | void vtkTemporalArrayOperatorFilter::PrintSelf(ostream& os, vtkIndent indent) |
| 43 | { |
| 44 | this->Superclass::PrintSelf(os, indent); |
| 45 | os << indent << "Operator: " << this->GetOperatorAsString() << " (" << this->Operator << ")" |
| 46 | << endl; |
| 47 | os << indent << "First time step: " << this->FirstTimeStepIndex << endl; |
| 48 | os << indent << "Second time step: " << this->SecondTimeStepIndex << endl; |
| 49 | os << indent << "Output array name suffix: " |
| 50 | << (this->OutputArrayNameSuffix ? this->OutputArrayNameSuffix : "") << endl; |
| 51 | os << indent << "Field association: " |
| 52 | << vtkDataObject::GetAssociationTypeAsString(this->GetInputArrayAssociation()) << endl; |
| 53 | } |
| 54 | |
| 55 | //------------------------------------------------------------------------------ |
| 56 | int vtkTemporalArrayOperatorFilter::FillInputPortInformation( |
nothing calls this directly
no test coverage detected