------------------------------------------------------------------------------
| 57 | |
| 58 | //------------------------------------------------------------------------------ |
| 59 | const char* vtkAMRBaseParticlesReader::GetParticleArrayName(int index) |
| 60 | { |
| 61 | assert("pre: array index out-of-bounds!" && (index >= 0) && |
| 62 | (index < this->ParticleDataArraySelection->GetNumberOfArrays())); |
| 63 | |
| 64 | return this->ParticleDataArraySelection->GetArrayName(index); |
| 65 | } |
| 66 | |
| 67 | //------------------------------------------------------------------------------ |
| 68 | int vtkAMRBaseParticlesReader::GetParticleArrayStatus(const char* name) |
nothing calls this directly
no test coverage detected