Program main
| 56 | // Program main |
| 57 | // |
| 58 | int main(int argc, char** argv) |
| 59 | { |
| 60 | // Fix compiler warning for unused variables |
| 61 | static_cast<void>(argc); |
| 62 | static_cast<void>(argv); |
| 63 | |
| 64 | // STEP 0: Initialize gaussian pulse parameters |
| 65 | SetPulse(); |
| 66 | |
| 67 | // STEP 1: Get the AMR dataset |
| 68 | auto amrDataSet = vtkSmartPointer<vtkOverlappingAMR>::Take(GetAMRDataSet()); |
| 69 | assert("pre: nullptr AMR dataset" && (amrDataSet != nullptr)); |
| 70 | |
| 71 | AMRCommon::WriteAMRData(amrDataSet, "Gaussian2D"); |
| 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | //============================================================================= |
| 76 | // Function Prototype Implementation |
nothing calls this directly
no test coverage detected