diff --git a/CMakeLists_files.cmake b/CMakeLists_files.cmake index b9be7d141..4814cffd3 100644 --- a/CMakeLists_files.cmake +++ b/CMakeLists_files.cmake @@ -533,7 +533,9 @@ if(ENABLE_ECL_INPUT) opm/parser/eclipse/EclipseState/Schedule/Well/WListManager.hpp opm/parser/eclipse/EclipseState/Schedule/Well/WellEconProductionLimits.hpp opm/parser/eclipse/EclipseState/Schedule/Well/WellFoamProperties.hpp + opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp opm/parser/eclipse/EclipseState/Schedule/Well/WellPolymerProperties.hpp + opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp opm/parser/eclipse/EclipseState/Schedule/Well/WellTracerProperties.hpp opm/parser/eclipse/EclipseState/Schedule/Well/WellTestConfig.hpp opm/parser/eclipse/EclipseState/Schedule/Well/WellTestState.hpp diff --git a/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp b/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp similarity index 100% rename from src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp rename to opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp diff --git a/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp b/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp similarity index 100% rename from src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp rename to opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp diff --git a/src/opm/output/eclipse/Summary.cpp b/src/opm/output/eclipse/Summary.cpp index 3ad800e3b..5e6a3f31b 100644 --- a/src/opm/output/eclipse/Summary.cpp +++ b/src/opm/output/eclipse/Summary.cpp @@ -47,8 +47,8 @@ #include #include -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp" -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp" +#include +#include namespace { struct SegmentResultDescriptor diff --git a/src/opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp b/src/opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp index ee632b4f3..0fa5f9f96 100644 --- a/src/opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp +++ b/src/opm/parser/eclipse/EclipseState/Schedule/Schedule.cpp @@ -55,7 +55,9 @@ #include #include #include +#include #include +#include #include #include #include @@ -63,8 +65,6 @@ #include #include "Well/injection.hpp" -#include "Well/WellProductionProperties.hpp" -#include "Well/WellInjectionProperties.hpp" namespace Opm { diff --git a/src/opm/parser/eclipse/EclipseState/Schedule/Well/Well2.cpp b/src/opm/parser/eclipse/EclipseState/Schedule/Well/Well2.cpp index 8077c7cfa..8e8b1375e 100644 --- a/src/opm/parser/eclipse/EclipseState/Schedule/Well/Well2.cpp +++ b/src/opm/parser/eclipse/EclipseState/Schedule/Well/Well2.cpp @@ -22,9 +22,8 @@ #include #include #include - -#include "WellProductionProperties.hpp" -#include "WellInjectionProperties.hpp" +#include +#include namespace Opm { diff --git a/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.cpp b/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.cpp index 771647bce..3ac7f95b4 100644 --- a/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.cpp +++ b/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.cpp @@ -25,9 +25,8 @@ #include #include #include +#include - -#include "WellInjectionProperties.hpp" #include "injection.hpp" #include "../eval_uda.hpp" diff --git a/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.cpp b/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.cpp index 16e4d61f2..13c05b4d5 100644 --- a/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.cpp +++ b/src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.cpp @@ -27,8 +27,8 @@ #include #include #include +#include -#include "WellProductionProperties.hpp" #include "../eval_uda.hpp" namespace Opm { diff --git a/tests/parser/GroupTests.cpp b/tests/parser/GroupTests.cpp index f48de0814..fb71e907c 100644 --- a/tests/parser/GroupTests.cpp +++ b/tests/parser/GroupTests.cpp @@ -34,8 +34,8 @@ #include #include -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp" -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp" +#include +#include using namespace Opm; diff --git a/tests/parser/ScheduleTests.cpp b/tests/parser/ScheduleTests.cpp index 45c30e3f8..958d45f2a 100644 --- a/tests/parser/ScheduleTests.cpp +++ b/tests/parser/ScheduleTests.cpp @@ -45,8 +45,8 @@ #include #include -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp" -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp" +#include +#include using namespace Opm; diff --git a/tests/parser/WellTests.cpp b/tests/parser/WellTests.cpp index d6c3603f3..464585f5a 100644 --- a/tests/parser/WellTests.cpp +++ b/tests/parser/WellTests.cpp @@ -42,8 +42,8 @@ #include #include -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp" -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp" +#include +#include using namespace Opm; diff --git a/tests/parser/integration/ParseKEYWORD.cpp b/tests/parser/integration/ParseKEYWORD.cpp index 4841f0722..656738b8d 100644 --- a/tests/parser/integration/ParseKEYWORD.cpp +++ b/tests/parser/integration/ParseKEYWORD.cpp @@ -32,8 +32,8 @@ #include #include -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp" -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp" +#include +#include using namespace Opm; diff --git a/tests/parser/integration/ScheduleCreateFromDeck.cpp b/tests/parser/integration/ScheduleCreateFromDeck.cpp index 6f263437e..918f1817a 100644 --- a/tests/parser/integration/ScheduleCreateFromDeck.cpp +++ b/tests/parser/integration/ScheduleCreateFromDeck.cpp @@ -34,8 +34,8 @@ #include #include -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp" -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp" +#include +#include using namespace Opm; diff --git a/tests/test_writenumwells.cpp b/tests/test_writenumwells.cpp index c78c3596f..f9160d75e 100644 --- a/tests/test_writenumwells.cpp +++ b/tests/test_writenumwells.cpp @@ -32,8 +32,8 @@ #include #include -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellProductionProperties.hpp" -#include "src/opm/parser/eclipse/EclipseState/Schedule/Well/WellInjectionProperties.hpp" +#include +#include // ERT stuff #include