diff --git a/IO/VPIC/Testing/Cxx/CMakeLists.txt b/IO/VPIC/Testing/Cxx/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f11625b9c8ba036b285eb7292ccebb10345a965b
--- /dev/null
+++ b/IO/VPIC/Testing/Cxx/CMakeLists.txt
@@ -0,0 +1,16 @@
+if(VTK_USE_LARGE_DATA)
+  # Tell ExternalData to fetch test input at build time.
+  ExternalData_Expand_Arguments(VTKData _
+    "DATA{${VTK_TEST_INPUT_DIR}/VPIC/global.vpc}"
+    "DATA{${VTK_TEST_INPUT_DIR}/VPIC/fields/T.0/,REGEX:.*}"
+    "DATA{${VTK_TEST_INPUT_DIR}/VPIC/fields/T.100/,REGEX:.*}"
+    "DATA{${VTK_TEST_INPUT_DIR}/VPIC/hydro/T.0/,REGEX:.*}"
+    "DATA{${VTK_TEST_INPUT_DIR}/VPIC/hydro/T.100/,REGEX:.*}"
+    )
+
+  vtk_add_test_cxx(
+    TestVPICReader.cxx
+    )
+endif()
+
+vtk_test_cxx_executable(${vtk-module}CxxTests)
diff --git a/IO/VPIC/Testing/Cxx/TestVPICReader.cxx b/IO/VPIC/Testing/Cxx/TestVPICReader.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..c85770d68ff1ec7b39d1022ac89ad2e8205d8f9f
--- /dev/null
+++ b/IO/VPIC/Testing/Cxx/TestVPICReader.cxx
@@ -0,0 +1,90 @@
+/*=========================================================================
+
+  Program:   Visualization Toolkit
+  Module:    TestPLYReader.cxx
+
+  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
+  All rights reserved.
+  See Copyright.txt or http://www.kitware.com/Copyright.htm 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 Test of vtkVPICReader
+// .SECTION Description
+// Tests the vtkVPICReader.
+
+#include "vtkVPICReader.h"
+#include "vtkDebugLeaks.h"
+
+#include "vtkActor.h"
+#include "vtkCamera.h"
+#include "vtkDataSetSurfaceFilter.h"
+#include "vtkLookupTable.h"
+#include "vtkPolyDataMapper.h"
+#include "vtkRenderer.h"
+#include "vtkRenderWindow.h"
+#include "vtkRenderWindowInteractor.h"
+#include "vtkRegressionTestImage.h"
+#include "vtkTestUtilities.h"
+
+#include "vtkWindowToImageFilter.h"
+#include "vtkPNGWriter.h"
+
+#include "vtkNew.h"
+
+int TestVPICReader( int argc, char *argv[] )
+{
+  // Read file name.
+  char* fname = vtkTestUtilities::ExpandDataFileName(argc, argv, "Data/VPIC/global.vpc");
+
+  // Create the reader.
+  vtkNew<vtkVPICReader> reader;
+  reader->SetFileName(fname);
+  reader->EnableAllPointArrays();
+  reader->Update();
+  delete [] fname;
+
+  vtkNew<vtkDataSetSurfaceFilter> geom1;
+  geom1->SetInputConnection(0, reader->GetOutputPort(0));
+
+  // Create a mapper.
+  vtkNew<vtkPolyDataMapper> mapper;
+  mapper->SetInputConnection(geom1->GetOutputPort());
+  mapper->SetScalarModeToUsePointFieldData();
+  mapper->SelectColorArray("Charge Density(Hhydro)");
+  mapper->SetScalarRange(0.06743, 1.197);
+
+  // Create the actor.
+  vtkNew<vtkActor> actor;
+  actor->SetMapper(mapper.GetPointer());
+
+  // Basic visualisation.
+  vtkNew<vtkRenderWindow> renWin;
+  vtkNew<vtkRenderer> ren;
+  vtkNew<vtkRenderWindowInteractor> iren;
+
+  renWin->AddRenderer(ren.GetPointer());
+  iren->SetRenderWindow(renWin.GetPointer());
+
+  ren->AddActor(actor.GetPointer());
+
+  ren->SetBackground(0,0,0);
+  renWin->SetSize(300,300);
+
+  // interact with data
+  renWin->Render();
+  ren->GetActiveCamera()->Roll(45);
+  ren->GetActiveCamera()->Azimuth(45);
+  renWin->Render();
+
+  int retVal = vtkRegressionTestImage( renWin.GetPointer() );
+
+  if ( retVal == vtkRegressionTester::DO_INTERACTOR)
+    {
+    iren->Start();
+    }
+  return !retVal;
+}
diff --git a/IO/VPIC/Testing/Data/Baseline/TestVPICReader.png.md5 b/IO/VPIC/Testing/Data/Baseline/TestVPICReader.png.md5
new file mode 100644
index 0000000000000000000000000000000000000000..28fcf912dd90028d981160b3e27a3a14aeeeb561
--- /dev/null
+++ b/IO/VPIC/Testing/Data/Baseline/TestVPICReader.png.md5
@@ -0,0 +1 @@
+accade8c6ba5adbeb9188a1791821beb
diff --git a/IO/VPIC/module.cmake b/IO/VPIC/module.cmake
index ef3b3c72a03edd71e32df42b31480234fc6d1e58..8e9d47b571e6843b722a5d85fe9d072002322279 100644
--- a/IO/VPIC/module.cmake
+++ b/IO/VPIC/module.cmake
@@ -3,4 +3,8 @@ vtk_module(vtkIOVPIC
     vtkVPIC
     vtkCommonExecutionModel
     vtkParallelCore
+  TEST_DEPENDS
+    vtkRenderingOpenGL
+    vtkTestingRendering
+    vtkInteractionStyle
   )
diff --git a/IO/VPIC/vtkVPICReader.cxx b/IO/VPIC/vtkVPICReader.cxx
index abb5c03fd90a67fd6ce8a315c8a7817b4e6f945b..bb32616e2d729534ce49876d66d29065c1aa1645 100644
--- a/IO/VPIC/vtkVPICReader.cxx
+++ b/IO/VPIC/vtkVPICReader.cxx
@@ -93,6 +93,8 @@ vtkVPICReader::vtkVPICReader()
     this->Rank = 0;
     this->TotalRank = 1;
     }
+
+  this->UsedRank = 0;
 }
 
 //----------------------------------------------------------------------------
diff --git a/Testing/Data/VPIC/fields/T.0/fields.0.0.md5 b/Testing/Data/VPIC/fields/T.0/fields.0.0.md5
new file mode 100644
index 0000000000000000000000000000000000000000..5fd70f6e160ac134af1b31a7b741a2869da3c1d7
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.0/fields.0.0.md5
@@ -0,0 +1 @@
+cff029254bf2a0f066083f03cffa0bc1
diff --git a/Testing/Data/VPIC/fields/T.0/fields.0.1.md5 b/Testing/Data/VPIC/fields/T.0/fields.0.1.md5
new file mode 100644
index 0000000000000000000000000000000000000000..f6942cd81ce3ac14a287ea34717a2c1cba37ccb2
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.0/fields.0.1.md5
@@ -0,0 +1 @@
+71d6c99b999ab61860cfa30dd520f1c2
diff --git a/Testing/Data/VPIC/fields/T.0/fields.0.2.md5 b/Testing/Data/VPIC/fields/T.0/fields.0.2.md5
new file mode 100644
index 0000000000000000000000000000000000000000..063d440864ef5149d0e36e7fdd0f2c867f52e294
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.0/fields.0.2.md5
@@ -0,0 +1 @@
+9879bbfc710cc02ce5dec3d6751255b0
diff --git a/Testing/Data/VPIC/fields/T.0/fields.0.3.md5 b/Testing/Data/VPIC/fields/T.0/fields.0.3.md5
new file mode 100644
index 0000000000000000000000000000000000000000..884373c76fe40c16ec24b953f9d2205f6e21c64c
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.0/fields.0.3.md5
@@ -0,0 +1 @@
+43c2b33537e765ea1c9cfbf473d77e74
diff --git a/Testing/Data/VPIC/fields/T.0/fields.0.4.md5 b/Testing/Data/VPIC/fields/T.0/fields.0.4.md5
new file mode 100644
index 0000000000000000000000000000000000000000..af25ce4f08ad807de1bfb5c3d3cd8db57f4d1fb6
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.0/fields.0.4.md5
@@ -0,0 +1 @@
+807714ea0cc7663721d1358aec6e7ecc
diff --git a/Testing/Data/VPIC/fields/T.0/fields.0.5.md5 b/Testing/Data/VPIC/fields/T.0/fields.0.5.md5
new file mode 100644
index 0000000000000000000000000000000000000000..4f35992fb9aec0f980c6e3a98685ada020f0f8ac
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.0/fields.0.5.md5
@@ -0,0 +1 @@
+4dab2ad1b828f0d841f258098217033f
diff --git a/Testing/Data/VPIC/fields/T.0/fields.0.6.md5 b/Testing/Data/VPIC/fields/T.0/fields.0.6.md5
new file mode 100644
index 0000000000000000000000000000000000000000..197fef2d7d16e5d20f53856312556ebec408b9ed
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.0/fields.0.6.md5
@@ -0,0 +1 @@
+e73e71d58abb32c8f94745b99266b696
diff --git a/Testing/Data/VPIC/fields/T.0/fields.0.7.md5 b/Testing/Data/VPIC/fields/T.0/fields.0.7.md5
new file mode 100644
index 0000000000000000000000000000000000000000..010e5309f8c35ddb38bd9eba1abc85e3b63cd775
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.0/fields.0.7.md5
@@ -0,0 +1 @@
+5e6790beeebb19d228354153a9d83b68
diff --git a/Testing/Data/VPIC/fields/T.100/fields.100.0.md5 b/Testing/Data/VPIC/fields/T.100/fields.100.0.md5
new file mode 100644
index 0000000000000000000000000000000000000000..d403ce4c113f0ab5d6bae485c31bae3181822d9e
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.100/fields.100.0.md5
@@ -0,0 +1 @@
+e50b9d252c69758083a6cb7c717c7198
diff --git a/Testing/Data/VPIC/fields/T.100/fields.100.1.md5 b/Testing/Data/VPIC/fields/T.100/fields.100.1.md5
new file mode 100644
index 0000000000000000000000000000000000000000..05e0fe27cb33cf7572f74934e6a3af1e56e96359
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.100/fields.100.1.md5
@@ -0,0 +1 @@
+0df19924c840699e65fca17bb5947910
diff --git a/Testing/Data/VPIC/fields/T.100/fields.100.2.md5 b/Testing/Data/VPIC/fields/T.100/fields.100.2.md5
new file mode 100644
index 0000000000000000000000000000000000000000..0e35c4ac1c8c071f75729f297a6b2a16892a72fa
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.100/fields.100.2.md5
@@ -0,0 +1 @@
+6a137ebae54374b9eedadcc3f80cf46c
diff --git a/Testing/Data/VPIC/fields/T.100/fields.100.3.md5 b/Testing/Data/VPIC/fields/T.100/fields.100.3.md5
new file mode 100644
index 0000000000000000000000000000000000000000..44f0008e50ee95928b4d3e424f4f59861db2e435
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.100/fields.100.3.md5
@@ -0,0 +1 @@
+c01551f5382dc683a2785747c8f3a2fc
diff --git a/Testing/Data/VPIC/fields/T.100/fields.100.4.md5 b/Testing/Data/VPIC/fields/T.100/fields.100.4.md5
new file mode 100644
index 0000000000000000000000000000000000000000..59132d19d9766e3fd87f54b53d4957cf035bf8b0
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.100/fields.100.4.md5
@@ -0,0 +1 @@
+69fd4c2bfc683f7cff51b147f42617f0
diff --git a/Testing/Data/VPIC/fields/T.100/fields.100.5.md5 b/Testing/Data/VPIC/fields/T.100/fields.100.5.md5
new file mode 100644
index 0000000000000000000000000000000000000000..02ed5a80ebd1e68e6d0f8cdeefb1754988703e8e
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.100/fields.100.5.md5
@@ -0,0 +1 @@
+8550f60cb717e22f6877175b199c610a
diff --git a/Testing/Data/VPIC/fields/T.100/fields.100.6.md5 b/Testing/Data/VPIC/fields/T.100/fields.100.6.md5
new file mode 100644
index 0000000000000000000000000000000000000000..eafd69078e50ab2b227ed97cea6e278a232b547d
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.100/fields.100.6.md5
@@ -0,0 +1 @@
+2b2c0d0022b345e3fc1f9012eae63a2c
diff --git a/Testing/Data/VPIC/fields/T.100/fields.100.7.md5 b/Testing/Data/VPIC/fields/T.100/fields.100.7.md5
new file mode 100644
index 0000000000000000000000000000000000000000..e403416f9d445ded5f1ebd5692d7ac3b04bd511c
--- /dev/null
+++ b/Testing/Data/VPIC/fields/T.100/fields.100.7.md5
@@ -0,0 +1 @@
+c93869f3230473ee8f15e5f43223e125
diff --git a/Testing/Data/VPIC/global.vpc.md5 b/Testing/Data/VPIC/global.vpc.md5
new file mode 100644
index 0000000000000000000000000000000000000000..22007fae9355100db6eba3a604693304b3fd2f68
--- /dev/null
+++ b/Testing/Data/VPIC/global.vpc.md5
@@ -0,0 +1 @@
+eec9a80bea5b00131c73f69fe0befc09
diff --git a/Testing/Data/VPIC/hydro/T.0/Hhydro.0.0.md5 b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.0.md5
new file mode 100644
index 0000000000000000000000000000000000000000..73a9d614c415e03d7414de4c898cfcbbfef59431
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.0.md5
@@ -0,0 +1 @@
+0a7451e4b21fc4b3f203cca0049892ba
diff --git a/Testing/Data/VPIC/hydro/T.0/Hhydro.0.1.md5 b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.1.md5
new file mode 100644
index 0000000000000000000000000000000000000000..c09f0187fa22c8fc37953add4b069d2d45703bae
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.1.md5
@@ -0,0 +1 @@
+a291bf1236ac3622d0ce235b2acfdf36
diff --git a/Testing/Data/VPIC/hydro/T.0/Hhydro.0.2.md5 b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.2.md5
new file mode 100644
index 0000000000000000000000000000000000000000..3285b444210094eb873d080c33f4b8cf5a30bf0e
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.2.md5
@@ -0,0 +1 @@
+e74d6b1f7c927d3ad1e5bb65d184a9e1
diff --git a/Testing/Data/VPIC/hydro/T.0/Hhydro.0.3.md5 b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.3.md5
new file mode 100644
index 0000000000000000000000000000000000000000..bfda9f904812410559d83966263bcf806d182834
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.3.md5
@@ -0,0 +1 @@
+f9b571234219148fcbeea6d682bf4908
diff --git a/Testing/Data/VPIC/hydro/T.0/Hhydro.0.4.md5 b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.4.md5
new file mode 100644
index 0000000000000000000000000000000000000000..137b7ec4de76fb7ba0ead5f083ad9c85e65a3193
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.4.md5
@@ -0,0 +1 @@
+7e29f53fdcf087016fd84d3870b1d32c
diff --git a/Testing/Data/VPIC/hydro/T.0/Hhydro.0.5.md5 b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.5.md5
new file mode 100644
index 0000000000000000000000000000000000000000..b4a6cda93beb196586efd477966478a5d8a2eee6
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.5.md5
@@ -0,0 +1 @@
+fbd25b7f0423754e6847e7b33f4d60eb
diff --git a/Testing/Data/VPIC/hydro/T.0/Hhydro.0.6.md5 b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.6.md5
new file mode 100644
index 0000000000000000000000000000000000000000..ef144e69d43bb9ff7b7c0a216f73034480f39699
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.6.md5
@@ -0,0 +1 @@
+e66ca71544282a54b5918f152a6a4170
diff --git a/Testing/Data/VPIC/hydro/T.0/Hhydro.0.7.md5 b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.7.md5
new file mode 100644
index 0000000000000000000000000000000000000000..84389c6649e62059750cdec353e934f53f438271
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/Hhydro.0.7.md5
@@ -0,0 +1 @@
+787a3264fbb218534f5a3c5ed5a5aaf3
diff --git a/Testing/Data/VPIC/hydro/T.0/ehydro.0.0.md5 b/Testing/Data/VPIC/hydro/T.0/ehydro.0.0.md5
new file mode 100644
index 0000000000000000000000000000000000000000..5836bda84da0b919dc183041a4b5dc802f0e77fc
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/ehydro.0.0.md5
@@ -0,0 +1 @@
+9cace7266f3efe6bb77e449ffc3b860e
diff --git a/Testing/Data/VPIC/hydro/T.0/ehydro.0.1.md5 b/Testing/Data/VPIC/hydro/T.0/ehydro.0.1.md5
new file mode 100644
index 0000000000000000000000000000000000000000..b72dba2850f5b6014231292527e9552dc0a7e27d
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/ehydro.0.1.md5
@@ -0,0 +1 @@
+6c247202348553e60e4c3d18c5283efe
diff --git a/Testing/Data/VPIC/hydro/T.0/ehydro.0.2.md5 b/Testing/Data/VPIC/hydro/T.0/ehydro.0.2.md5
new file mode 100644
index 0000000000000000000000000000000000000000..9a6474a785b444e6327adc0dd9e770c97c87c59c
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/ehydro.0.2.md5
@@ -0,0 +1 @@
+988be0177c741dfed25139a2105c8f5d
diff --git a/Testing/Data/VPIC/hydro/T.0/ehydro.0.3.md5 b/Testing/Data/VPIC/hydro/T.0/ehydro.0.3.md5
new file mode 100644
index 0000000000000000000000000000000000000000..754f13af66ba4e4bcc2e157e7576360ecd480dd2
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/ehydro.0.3.md5
@@ -0,0 +1 @@
+218fa43debf0bdc39247ee6b1ab76006
diff --git a/Testing/Data/VPIC/hydro/T.0/ehydro.0.4.md5 b/Testing/Data/VPIC/hydro/T.0/ehydro.0.4.md5
new file mode 100644
index 0000000000000000000000000000000000000000..292351124832c4a483efeb730d35548f83acfbe3
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/ehydro.0.4.md5
@@ -0,0 +1 @@
+a3ed751e3d96786298262a9f1e31b4d4
diff --git a/Testing/Data/VPIC/hydro/T.0/ehydro.0.5.md5 b/Testing/Data/VPIC/hydro/T.0/ehydro.0.5.md5
new file mode 100644
index 0000000000000000000000000000000000000000..7af53525630b2d0741fa9a420e3cd915997c425e
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/ehydro.0.5.md5
@@ -0,0 +1 @@
+0e5acb459422510f10561c73e2beedd6
diff --git a/Testing/Data/VPIC/hydro/T.0/ehydro.0.6.md5 b/Testing/Data/VPIC/hydro/T.0/ehydro.0.6.md5
new file mode 100644
index 0000000000000000000000000000000000000000..43c78b9796e5f2a5a3c5034221fad5bdfe06e55c
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/ehydro.0.6.md5
@@ -0,0 +1 @@
+8b532a928e675118e6dfcfe91fe740d4
diff --git a/Testing/Data/VPIC/hydro/T.0/ehydro.0.7.md5 b/Testing/Data/VPIC/hydro/T.0/ehydro.0.7.md5
new file mode 100644
index 0000000000000000000000000000000000000000..35bbfcd18c716f008bf56ff24173c4c5264d665c
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.0/ehydro.0.7.md5
@@ -0,0 +1 @@
+f755500cd86db24d800a6d788e49601f
diff --git a/Testing/Data/VPIC/hydro/T.100/Hhydro.100.0.md5 b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.0.md5
new file mode 100644
index 0000000000000000000000000000000000000000..1c5900b2af7b87c7e3b6337a8333fb1a7157755e
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.0.md5
@@ -0,0 +1 @@
+84abb7101a1f21f0bc27fb9d8ef7d5b8
diff --git a/Testing/Data/VPIC/hydro/T.100/Hhydro.100.1.md5 b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.1.md5
new file mode 100644
index 0000000000000000000000000000000000000000..38670939d41dc2bdce1db83f9dc36503b35378c4
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.1.md5
@@ -0,0 +1 @@
+3261fe2044c40f62941ca9bfab53aaf6
diff --git a/Testing/Data/VPIC/hydro/T.100/Hhydro.100.2.md5 b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.2.md5
new file mode 100644
index 0000000000000000000000000000000000000000..7b731ee2a673c8f60122044218e1fdfd90fe93c4
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.2.md5
@@ -0,0 +1 @@
+db79710b4b68fa3886386b433b33b756
diff --git a/Testing/Data/VPIC/hydro/T.100/Hhydro.100.3.md5 b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.3.md5
new file mode 100644
index 0000000000000000000000000000000000000000..d65a5997bcbd27edcebffd82ee66ea98937d57cb
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.3.md5
@@ -0,0 +1 @@
+524907f8b1ac5a1515df8c267697166a
diff --git a/Testing/Data/VPIC/hydro/T.100/Hhydro.100.4.md5 b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.4.md5
new file mode 100644
index 0000000000000000000000000000000000000000..be1a660ec532a5b242e7854799b0d397da8d8651
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.4.md5
@@ -0,0 +1 @@
+0834f90dd542d7ace5e7c58255489347
diff --git a/Testing/Data/VPIC/hydro/T.100/Hhydro.100.5.md5 b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.5.md5
new file mode 100644
index 0000000000000000000000000000000000000000..3c8817119c9b171a629490fd2c341a1ba98495bd
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.5.md5
@@ -0,0 +1 @@
+29fee67d03700195b285af75da77f4c0
diff --git a/Testing/Data/VPIC/hydro/T.100/Hhydro.100.6.md5 b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.6.md5
new file mode 100644
index 0000000000000000000000000000000000000000..87a360fdbe60a1b0d2a84e01eeb26147eb9190e2
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.6.md5
@@ -0,0 +1 @@
+ca5e00377eb83c9afb90be1cfc11f8a4
diff --git a/Testing/Data/VPIC/hydro/T.100/Hhydro.100.7.md5 b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.7.md5
new file mode 100644
index 0000000000000000000000000000000000000000..c89f19405900ee6f03eb3036fef55e8b6b872c36
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/Hhydro.100.7.md5
@@ -0,0 +1 @@
+e26bf2c2e039a8e4ad9a10889298b847
diff --git a/Testing/Data/VPIC/hydro/T.100/ehydro.100.0.md5 b/Testing/Data/VPIC/hydro/T.100/ehydro.100.0.md5
new file mode 100644
index 0000000000000000000000000000000000000000..d417b9b67ca4d5c79ad22483019a03a72e75ea18
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/ehydro.100.0.md5
@@ -0,0 +1 @@
+bd0c3efdf5aae6112dd4e49dadf6b697
diff --git a/Testing/Data/VPIC/hydro/T.100/ehydro.100.1.md5 b/Testing/Data/VPIC/hydro/T.100/ehydro.100.1.md5
new file mode 100644
index 0000000000000000000000000000000000000000..5013ecc0db20d868b00abea52c8da759580405a9
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/ehydro.100.1.md5
@@ -0,0 +1 @@
+2a8971dae9c585e993083ef38bcd3bb5
diff --git a/Testing/Data/VPIC/hydro/T.100/ehydro.100.2.md5 b/Testing/Data/VPIC/hydro/T.100/ehydro.100.2.md5
new file mode 100644
index 0000000000000000000000000000000000000000..e6c41f4ae39976abf43333bf04a7a1c1e34d478c
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/ehydro.100.2.md5
@@ -0,0 +1 @@
+74ea187e3ace3343a42e10391fdc67e2
diff --git a/Testing/Data/VPIC/hydro/T.100/ehydro.100.3.md5 b/Testing/Data/VPIC/hydro/T.100/ehydro.100.3.md5
new file mode 100644
index 0000000000000000000000000000000000000000..d9b01cc209f7ed49c96cbbe76249b0c1aa6b7cca
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/ehydro.100.3.md5
@@ -0,0 +1 @@
+9a1a119c67d5b915fcbb96884365d39c
diff --git a/Testing/Data/VPIC/hydro/T.100/ehydro.100.4.md5 b/Testing/Data/VPIC/hydro/T.100/ehydro.100.4.md5
new file mode 100644
index 0000000000000000000000000000000000000000..70842ee1a7fef8daf5c4e309d6e13ace65239ab0
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/ehydro.100.4.md5
@@ -0,0 +1 @@
+58473af39590452e1436d6b59ae1ccb9
diff --git a/Testing/Data/VPIC/hydro/T.100/ehydro.100.5.md5 b/Testing/Data/VPIC/hydro/T.100/ehydro.100.5.md5
new file mode 100644
index 0000000000000000000000000000000000000000..0df536df084a8629d1fc2f30895b17e087ac7f39
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/ehydro.100.5.md5
@@ -0,0 +1 @@
+85be77d65d5d23459dd2d1088a9d9e1e
diff --git a/Testing/Data/VPIC/hydro/T.100/ehydro.100.6.md5 b/Testing/Data/VPIC/hydro/T.100/ehydro.100.6.md5
new file mode 100644
index 0000000000000000000000000000000000000000..879536ce9c469af50edb69b6c6f3b530e8b2545e
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/ehydro.100.6.md5
@@ -0,0 +1 @@
+e0b88165abd594bd80e93ecfa54e7e53
diff --git a/Testing/Data/VPIC/hydro/T.100/ehydro.100.7.md5 b/Testing/Data/VPIC/hydro/T.100/ehydro.100.7.md5
new file mode 100644
index 0000000000000000000000000000000000000000..681a3d650d4df1353f4905f096746df2746bbb47
--- /dev/null
+++ b/Testing/Data/VPIC/hydro/T.100/ehydro.100.7.md5
@@ -0,0 +1 @@
+558476eed3350c8c45e153de8c8ec910