| 1347 | }; |
| 1348 | |
| 1349 | vtkMultiBlockPLOT3DReader::vtkMultiBlockPLOT3DReader() |
| 1350 | { |
| 1351 | this->XYZFileName = nullptr; |
| 1352 | this->QFileName = nullptr; |
| 1353 | this->FunctionFileName = nullptr; |
| 1354 | this->BinaryFile = 1; |
| 1355 | this->HasByteCount = 0; |
| 1356 | this->TwoDimensionalGeometry = 0; |
| 1357 | this->MultiGrid = 0; |
| 1358 | this->ForceRead = 0; |
| 1359 | this->ByteOrder = FILE_BIG_ENDIAN; |
| 1360 | this->IBlanking = 0; |
| 1361 | this->DoublePrecision = 0; |
| 1362 | this->AutoDetectFormat = 0; |
| 1363 | |
| 1364 | this->ExecutedGhostLevels = 0; |
| 1365 | |
| 1366 | this->FileSize = 0; |
| 1367 | |
| 1368 | this->R = 1.0; |
| 1369 | this->Gamma = 1.4; |
| 1370 | this->GammaInf = this->Gamma; |
| 1371 | |
| 1372 | this->PreserveIntermediateFunctions = true; |
| 1373 | |
| 1374 | this->FunctionList = vtkIntArray::New(); |
| 1375 | |
| 1376 | this->ScalarFunctionNumber = -1; |
| 1377 | this->SetScalarFunctionNumber(100); |
| 1378 | this->VectorFunctionNumber = -1; |
| 1379 | this->SetVectorFunctionNumber(202); |
| 1380 | |
| 1381 | this->Internal = new vtkMultiBlockPLOT3DReaderInternals; |
| 1382 | this->Controller = nullptr; |
| 1383 | this->SetController(vtkMultiProcessController::GetGlobalController()); |
| 1384 | |
| 1385 | this->SetNumberOfInputPorts(0); |
| 1386 | } |
| 1387 | |
| 1388 | vtkMultiBlockPLOT3DReader::~vtkMultiBlockPLOT3DReader() |
| 1389 | { |
nothing calls this directly
no test coverage detected