From 921540d001a2ceb5802c5484002c97f48370a71b Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Mon, 4 Nov 2013 14:17:32 +0100 Subject: [PATCH] fix the end of namespace comments this was done semi-automatically by a python script --- examples/tutorial1problem.hh | 2 +- tests/models/problems/co2injectionproblem.hh | 8 ++++---- tests/models/problems/cuvetteproblem.hh | 6 +++--- tests/models/problems/diffusionproblem.hh | 6 +++--- tests/models/problems/fingergridcreator.hh | 8 ++++---- tests/models/problems/fingerproblem.hh | 6 +++--- tests/models/problems/fractureproblem.hh | 6 +++--- tests/models/problems/groundwaterproblem.hh | 6 +++--- tests/models/problems/infiltrationproblem.hh | 6 +++--- tests/models/problems/lensgridcreator.hh | 8 ++++---- tests/models/problems/lensproblem.hh | 6 +++--- tests/models/problems/navierstokestestproblem.hh | 6 +++--- tests/models/problems/obstacleproblem.hh | 6 +++--- tests/models/problems/outflowproblem.hh | 6 +++--- tests/models/problems/powerinjectionproblem.hh | 6 +++--- tests/models/problems/reservoirproblem.hh | 6 +++--- tests/models/problems/richardslensproblem.hh | 6 +++--- tests/models/problems/stokes2ctestproblem.hh | 6 +++--- tests/models/problems/stokesnitestproblem.hh | 6 +++--- tests/models/problems/stokestestproblem.hh | 6 +++--- tests/models/problems/waterairproblem.hh | 6 +++--- 21 files changed, 64 insertions(+), 64 deletions(-) diff --git a/examples/tutorial1problem.hh b/examples/tutorial1problem.hh index b681bd555..3a089d8ef 100644 --- a/examples/tutorial1problem.hh +++ b/examples/tutorial1problem.hh @@ -112,7 +112,7 @@ SET_INT_PROP(TutorialProblemCoupled, CellsX, 100); SET_INT_PROP(TutorialProblemCoupled, CellsY, 1); SET_INT_PROP(TutorialProblemCoupled, CellsZ, 1); /*@\label{tutorial-coupled:default-params-end}@*/ } // namespace Properties -} +} // namespace Opm namespace Ewoms { //! Tutorial problem using the fully-implicit immiscible model. diff --git a/tests/models/problems/co2injectionproblem.hh b/tests/models/problems/co2injectionproblem.hh index 1a3a10327..8e718bc7f 100644 --- a/tests/models/problems/co2injectionproblem.hh +++ b/tests/models/problems/co2injectionproblem.hh @@ -56,7 +56,7 @@ class Co2InjectionProblem; namespace Co2Injection { #include } -} +} // namespace Ewoms namespace Opm { namespace Properties { @@ -155,8 +155,8 @@ SET_SCALAR_PROP(Co2InjectionBaseProblem, InitialTimeStepSize, 250); // The default DGF file to load SET_STRING_PROP(Co2InjectionBaseProblem, GridFile, "grids/co2injection.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -593,6 +593,6 @@ private: Scalar pressureLow_, pressureHigh_; Scalar temperatureLow_, temperatureHigh_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/cuvetteproblem.hh b/tests/models/problems/cuvetteproblem.hh index f03141cf3..914436ba5 100644 --- a/tests/models/problems/cuvetteproblem.hh +++ b/tests/models/problems/cuvetteproblem.hh @@ -118,8 +118,8 @@ SET_SCALAR_PROP(CuvetteBaseProblem, InitialTimeStepSize, 1); // The default DGF file to load SET_STRING_PROP(CuvetteBaseProblem, GridFile, "./grids/cuvette_11x4.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -619,6 +619,6 @@ private: const Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/diffusionproblem.hh b/tests/models/problems/diffusionproblem.hh index 68d3d1d4c..73c017461 100644 --- a/tests/models/problems/diffusionproblem.hh +++ b/tests/models/problems/diffusionproblem.hh @@ -102,8 +102,8 @@ SET_SCALAR_PROP(DiffusionBaseProblem, EndTime, 1e6); // The default for the initial time step size of the simulation SET_SCALAR_PROP(DiffusionBaseProblem, InitialTimeStepSize, 1000); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -320,6 +320,6 @@ private: Scalar temperature_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/fingergridcreator.hh b/tests/models/problems/fingergridcreator.hh index 041c38496..07a2ccbb6 100644 --- a/tests/models/problems/fingergridcreator.hh +++ b/tests/models/problems/fingergridcreator.hh @@ -44,7 +44,7 @@ namespace Ewoms { template class FingerProblem; -} +} // namespace Ewoms namespace Opm { ////////// @@ -65,8 +65,8 @@ NEW_PROP_TAG(CellsY); NEW_PROP_TAG(CellsZ); NEW_PROP_TAG(GridGlobalRefinements); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -390,6 +390,6 @@ Dune::YaspGrid *FingerGridCreator::grid_; #endif // HAVE_ALUGRDID -} +} // namespace Ewoms #endif diff --git a/tests/models/problems/fingerproblem.hh b/tests/models/problems/fingerproblem.hh index c99e41a5a..d4e757973 100644 --- a/tests/models/problems/fingerproblem.hh +++ b/tests/models/problems/fingerproblem.hh @@ -139,8 +139,8 @@ SET_SCALAR_PROP(FingerBaseProblem, EndTime, 1e3); // The default for the initial time step size of the simulation SET_SCALAR_PROP(FingerBaseProblem, InitialTimeStepSize, 10); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -480,6 +480,6 @@ private: Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/fractureproblem.hh b/tests/models/problems/fractureproblem.hh index 8dd327d04..109f9d4fe 100644 --- a/tests/models/problems/fractureproblem.hh +++ b/tests/models/problems/fractureproblem.hh @@ -137,8 +137,8 @@ SET_SCALAR_PROP(FractureProblem, EndTime, 1e6); // Set the default value for the initial time step size SET_SCALAR_PROP(FractureProblem, InitialTimeStepSize, 100); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -570,6 +570,6 @@ private: Scalar temperature_; Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif // EWOMS_FRACTURE_PROBLEM_HH diff --git a/tests/models/problems/groundwaterproblem.hh b/tests/models/problems/groundwaterproblem.hh index d0b8c5682..9be9c9cc9 100644 --- a/tests/models/problems/groundwaterproblem.hh +++ b/tests/models/problems/groundwaterproblem.hh @@ -95,8 +95,8 @@ SET_SCALAR_PROP(GroundWaterBaseProblem, InitialTimeStepSize, 1); // The default DGF file to load SET_STRING_PROP(GroundWaterBaseProblem, GridFile, "./grids/groundwater_2d.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -316,6 +316,6 @@ private: Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/infiltrationproblem.hh b/tests/models/problems/infiltrationproblem.hh index d1a998536..aaceeb89d 100644 --- a/tests/models/problems/infiltrationproblem.hh +++ b/tests/models/problems/infiltrationproblem.hh @@ -115,8 +115,8 @@ SET_SCALAR_PROP(InfiltrationBaseProblem, InitialTimeStepSize, 60); // The default DGF file to load SET_STRING_PROP(InfiltrationBaseProblem, GridFile, "./grids/infiltration_50x3.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -487,6 +487,6 @@ private: Scalar temperature_; Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/lensgridcreator.hh b/tests/models/problems/lensgridcreator.hh index ce99008da..26730c899 100644 --- a/tests/models/problems/lensgridcreator.hh +++ b/tests/models/problems/lensgridcreator.hh @@ -44,7 +44,7 @@ namespace Ewoms { template class LensProblem; -} +} // namespace Ewoms ////////// // Specify the properties for the lens problem @@ -64,8 +64,8 @@ NEW_PROP_TAG(CellsY); NEW_PROP_TAG(CellsZ); NEW_PROP_TAG(GridGlobalRefinements); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -395,6 +395,6 @@ Dune::YaspGrid *LensGridCreator::grid_; #endif // HAVE_UG -} +} // namespace Ewoms #endif diff --git a/tests/models/problems/lensproblem.hh b/tests/models/problems/lensproblem.hh index 7cadc82e4..180b35732 100644 --- a/tests/models/problems/lensproblem.hh +++ b/tests/models/problems/lensproblem.hh @@ -147,8 +147,8 @@ SET_SCALAR_PROP(LensBaseProblem, EndTime, 30e3); // The default for the initial time step size of the simulation SET_SCALAR_PROP(LensBaseProblem, InitialTimeStepSize, 250); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -527,6 +527,6 @@ private: Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/navierstokestestproblem.hh b/tests/models/problems/navierstokestestproblem.hh index 69c38b491..2c2125be5 100644 --- a/tests/models/problems/navierstokestestproblem.hh +++ b/tests/models/problems/navierstokestestproblem.hh @@ -86,8 +86,8 @@ SET_SCALAR_PROP(NavierStokesTestProblem, InitialTimeStepSize, 1e-3); // Default grid file to load SET_STRING_PROP(NavierStokesTestProblem, GridFile, "grids/test_navierstokes.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -260,6 +260,6 @@ private: Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/obstacleproblem.hh b/tests/models/problems/obstacleproblem.hh index 7d8ec063e..6473d6208 100644 --- a/tests/models/problems/obstacleproblem.hh +++ b/tests/models/problems/obstacleproblem.hh @@ -112,8 +112,8 @@ SET_SCALAR_PROP(ObstacleBaseProblem, InitialTimeStepSize, 250); // The default DGF file to load SET_STRING_PROP(ObstacleBaseProblem, GridFile, "./grids/obstacle_24x16.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -540,6 +540,6 @@ private: Scalar temperature_; Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/outflowproblem.hh b/tests/models/problems/outflowproblem.hh index 0aab41bc1..745e9e52d 100644 --- a/tests/models/problems/outflowproblem.hh +++ b/tests/models/problems/outflowproblem.hh @@ -71,8 +71,8 @@ SET_SCALAR_PROP(OutflowBaseProblem, InitialTimeStepSize, 1); // The default DGF file to load SET_STRING_PROP(OutflowBaseProblem, GridFile, "./grids/outflow.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -305,6 +305,6 @@ private: Scalar porosity_; Scalar tortuosity_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/powerinjectionproblem.hh b/tests/models/problems/powerinjectionproblem.hh index 2463ec848..e3425687d 100644 --- a/tests/models/problems/powerinjectionproblem.hh +++ b/tests/models/problems/powerinjectionproblem.hh @@ -117,8 +117,8 @@ SET_SCALAR_PROP(PowerInjectionBaseProblem, EndTime, 100); // The default for the initial time step size of the simulation SET_SCALAR_PROP(PowerInjectionBaseProblem, InitialTimeStepSize, 1e-3); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -370,6 +370,6 @@ private: Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/reservoirproblem.hh b/tests/models/problems/reservoirproblem.hh index 89a992da8..f66599450 100644 --- a/tests/models/problems/reservoirproblem.hh +++ b/tests/models/problems/reservoirproblem.hh @@ -101,8 +101,8 @@ SET_SCALAR_PROP(ReservoirBaseProblem, InitialTimeStepSize, 10); // The default DGF file to load SET_STRING_PROP(ReservoirBaseProblem, GridFile, "grids/reservoir.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -596,6 +596,6 @@ private: std::string name_ ; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/richardslensproblem.hh b/tests/models/problems/richardslensproblem.hh index 4beb88513..4581636ee 100644 --- a/tests/models/problems/richardslensproblem.hh +++ b/tests/models/problems/richardslensproblem.hh @@ -111,8 +111,8 @@ SET_SCALAR_PROP(RichardsLensProblem, InitialTimeStepSize, 100); // The default DGF file to load SET_STRING_PROP(RichardsLensProblem, GridFile, "./grids/richardslens_24x16.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -387,6 +387,6 @@ private: Scalar eps_; Scalar pnRef_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/stokes2ctestproblem.hh b/tests/models/problems/stokes2ctestproblem.hh index 04f7ec7fc..43e1ef464 100644 --- a/tests/models/problems/stokes2ctestproblem.hh +++ b/tests/models/problems/stokes2ctestproblem.hh @@ -72,8 +72,8 @@ SET_SCALAR_PROP(Stokes2cTestProblem, InitialTimeStepSize, 0.1); // Default grid file to load SET_STRING_PROP(Stokes2cTestProblem, GridFile, "grids/test_stokes2c.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -279,6 +279,6 @@ private: Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/stokesnitestproblem.hh b/tests/models/problems/stokesnitestproblem.hh index 00d194401..e9b4ac4db 100644 --- a/tests/models/problems/stokesnitestproblem.hh +++ b/tests/models/problems/stokesnitestproblem.hh @@ -72,8 +72,8 @@ SET_SCALAR_PROP(StokesNITestProblem, InitialTimeStepSize, 0.1); // Default grid file to load SET_STRING_PROP(StokesNITestProblem, GridFile, "grids/test_stokes2cni.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -308,6 +308,6 @@ private: Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/stokestestproblem.hh b/tests/models/problems/stokestestproblem.hh index 2c45ca71e..dba7651e3 100644 --- a/tests/models/problems/stokestestproblem.hh +++ b/tests/models/problems/stokestestproblem.hh @@ -72,8 +72,8 @@ SET_SCALAR_PROP(StokesTestProblem, InitialTimeStepSize, 10.0); // Default grid file to load SET_STRING_PROP(StokesTestProblem, GridFile, "grids/test_stokes.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -293,6 +293,6 @@ private: Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif diff --git a/tests/models/problems/waterairproblem.hh b/tests/models/problems/waterairproblem.hh index 477146141..ca89df148 100644 --- a/tests/models/problems/waterairproblem.hh +++ b/tests/models/problems/waterairproblem.hh @@ -119,8 +119,8 @@ SET_SCALAR_PROP(WaterAirBaseProblem, InitialTimeStepSize, 250); // The default DGF file to load SET_STRING_PROP(WaterAirBaseProblem, GridFile, "./grids/waterair.dgf"); -} -} +} // namespace Properties +} // namespace Opm namespace Ewoms { /*! @@ -533,6 +533,6 @@ private: Scalar maxDepth_; Scalar eps_; }; -} //end namespace +} // namespace Ewoms #endif