From cb1bc0cb8f7bbdd960273eafdb1f8d11a35538e5 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Thu, 21 Jan 2016 00:40:29 +0000
Subject: [PATCH] [PL] Store process variables also in Process.

---
 ProcessLib/GroundwaterFlowProcess.h | 4 +++-
 ProcessLib/Process.h                | 3 +++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ProcessLib/GroundwaterFlowProcess.h b/ProcessLib/GroundwaterFlowProcess.h
index 02be590d2cc..5f30cba1885 100644
--- a/ProcessLib/GroundwaterFlowProcess.h
+++ b/ProcessLib/GroundwaterFlowProcess.h
@@ -78,7 +78,9 @@ public:
 
             DBUG("Associate hydraulic_head with process variable \'%s\'.",
                 name.c_str());
-            _hydraulic_head = const_cast<ProcessVariable*>(&*variable);
+            this->_process_variables.emplace_back(
+                const_cast<ProcessVariable*>(&*variable));
+            _hydraulic_head = this->_process_variables.back();
         }
 
         // Hydraulic conductivity parameter.
diff --git a/ProcessLib/Process.h b/ProcessLib/Process.h
index cdc9f36bea4..df441d9fcaf 100644
--- a/ProcessLib/Process.h
+++ b/ProcessLib/Process.h
@@ -197,6 +197,9 @@ protected:
 
 	std::vector<DirichletBc<GlobalIndexType>> _dirichlet_bcs;
 	std::vector<std::unique_ptr<NeumannBc<GlobalSetup>>> _neumann_bcs;
+
+    /// Variables used by this process.
+	std::vector<ProcessVariable*> _process_variables;
 };
 
 }  // namespace ProcessLib
-- 
GitLab