diff --git a/utils/data-processing/plot_all_planes.py b/utils/data-processing/plot_all_planes.py
index e13d100d7fd636188af3285ca7f6106cb01edfe5..70db2ce32332feaf72a04dd425ea13d828a32b5c 100644
--- a/utils/data-processing/plot_all_planes.py
+++ b/utils/data-processing/plot_all_planes.py
@@ -7,7 +7,7 @@ column2 = []
 column3 = []
 
 # Open and read the CSV file
-with open('outputs/1714090197.csv', 'r') as file:
+with open('outputs/30steps.csv', 'r') as file:
     reader = csv.reader(file)
     for row in reader:
         # Append data from each column to respective lists
diff --git a/utils/data-processing/plot_peaks.py b/utils/data-processing/plot_peaks.py
index a36fbcc8e9b7fb39260b86253acd2b031970fc86..8e1f4e73825add3e9c44ae39fdac0a253b52e338 100644
--- a/utils/data-processing/plot_peaks.py
+++ b/utils/data-processing/plot_peaks.py
@@ -5,7 +5,7 @@ import csv
 
 magnitudes = []
 
-with open('outputs/50steps-vectorized.csv', 'r') as file:
+with open('outputs/30steps-vectorized.csv', 'r') as file:
     reader = csv.reader(file)
     next(reader)  # Skip the header row
     for row in reader:
diff --git a/utils/data-processing/plot_vectorized_planes.py b/utils/data-processing/plot_vectorized_planes.py
index 7a0cce2a800651567a068b47edb56c02e6ce8659..fcb5e6236af508a335c2832b31ba2c52757a04a1 100644
--- a/utils/data-processing/plot_vectorized_planes.py
+++ b/utils/data-processing/plot_vectorized_planes.py
@@ -5,7 +5,7 @@ import csv
 # Initialize list to store magnitudes
 magnitudes = []
 
-with open('outputs/vectorized_data.csv', 'r') as file:
+with open('outputs/30steps-vectorized.csv', 'r') as file:
     reader = csv.reader(file)
     next(reader)  # Skip the header row
     for row in reader: