From 5b661e44ffa7cc8b3f96567717f326a3f8909d43 Mon Sep 17 00:00:00 2001
From: Markus Quaritsch <quaritsch@ivt.tugraz.at>
Date: Mon, 5 Jun 2023 08:40:19 +0200
Subject: [PATCH] override checking gears method for IEPC

---
 .../SimulationComponents/GearBoxDataAdapter.cs            | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/SimulationComponents/GearBoxDataAdapter.cs b/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/SimulationComponents/GearBoxDataAdapter.cs
index 2af9429ca3..28de4df68b 100644
--- a/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/SimulationComponents/GearBoxDataAdapter.cs
+++ b/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/SimulationComponents/GearBoxDataAdapter.cs
@@ -228,7 +228,7 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter.SimulationComponen
 		}
 
 
-		protected void CheckGearNumbers(IGearboxDeclarationInputData gbxInputData)
+		protected virtual void CheckGearNumbers(IGearboxDeclarationInputData gbxInputData)
 		{
 			if (gbxInputData == null) {
 				return;
@@ -565,6 +565,12 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter.SimulationComponen
 		{
 			return CreateIEPCGearboxData(inputData, runData, shiftPolygonCalculator);
 		}
+
+		protected override void CheckGearNumbers(IGearboxDeclarationInputData gbxInputData)
+		{
+			// TODO?
+		}
+
 		#endregion
 	}
 
-- 
GitLab