From 537e1ab39b221864e27168146773e47cb263e7f0 Mon Sep 17 00:00:00 2001
From: Giovanni La Mura <giovanni.lamura@inaf.it>
Date: Mon, 11 Dec 2023 14:52:11 +0100
Subject: [PATCH] Fix path to default data file

---
 src/sphere/np_sphere.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sphere/np_sphere.cpp b/src/sphere/np_sphere.cpp
index cec49e8e..9449ace4 100644
--- a/src/sphere/np_sphere.cpp
+++ b/src/sphere/np_sphere.cpp
@@ -21,7 +21,7 @@ extern void sphere(string config_file, string data_file, string output_path);
  */
 int main(int argc, char **argv) {
 	string config_file = "../../test_data/sphere/DEDFB";
-	string data_file = "../../test_data/sphere/DCLU";
+	string data_file = "../../test_data/sphere/DSPH";
 	string output_path = ".";
 	if (argc == 4) {
 		config_file = string(argv[1]);
-- 
GitLab