initial hdfreader implementation

This commit is contained in:
2026-07-05 19:36:20 +02:00
parent 83a01f1d83
commit 3bfb2670eb
+2 -4
View File
@@ -96,12 +96,10 @@ class Experiment:
#for tracking the experiment length: #for tracking the experiment length:
#because loops are possible we need to track the length for each loop level #because loops are possible we need to track the length for each loop level
self.total_time=[] self.total_time=[0.0]
self.total_time.append(0.0)
#and we need to know the number of iterations of the loops to multiply the state. #and we need to know the number of iterations of the loops to multiply the state.
self.loop_iterations=[] self.loop_iterations=[1]
self.loop_iterations.append(1)
# Commands ------------------------------------------------------------------------------------- # Commands -------------------------------------------------------------------------------------