From 69437dcc3e96f7c78be84debf1052abec3146680 Mon Sep 17 00:00:00 2001
From: Michael Krisper <michael.krisper@tugraz.at>
Date: Wed, 27 Apr 2016 11:10:50 +0200
Subject: [PATCH] using correct name of sumfile (was jobfile)

---
 VectoCore/OutputData/FileIO/FileOutputWriter.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/VectoCore/OutputData/FileIO/FileOutputWriter.cs b/VectoCore/OutputData/FileIO/FileOutputWriter.cs
index 6b59948e16..0cfc26b535 100644
--- a/VectoCore/OutputData/FileIO/FileOutputWriter.cs
+++ b/VectoCore/OutputData/FileIO/FileOutputWriter.cs
@@ -49,7 +49,7 @@ namespace TUGraz.VectoCore.OutputData.FileIO
 		/// <summary>
 		/// 
 		/// </summary>
-		/// <param name="jobFile">full path of the json job-file. jobName and basePath are extracted</param>
+		/// <param name="jobFile">full path of the json job-file. jobName and basePath are extracted.</param>
 		public FileOutputWriter(string jobFile)
 		{
 			_jobFile = jobFile;
@@ -57,7 +57,7 @@ namespace TUGraz.VectoCore.OutputData.FileIO
 
 		public void WriteSumData(DataTable data)
 		{
-			VectoCSVFile.Write(_jobFile, data);
+			VectoCSVFile.Write(SumFileName, data);
 		}
 		
 		public string GetModDataFileName(string runName, string cycleName, string runSuffix)
-- 
GitLab