Skip to content

Commit

Permalink
Following PR cta-observatory#163, modify HDF5 groups to be read by TR…
Browse files Browse the repository at this point in the history
…R test suite
  • Loading branch information
jlenain committed Jan 16, 2025
1 parent aeeb355 commit 7ec0b00
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def finish(self, *args, **kwargs):

for thing in output_file:
group = output_file[thing]
dataset = group["ChargeContainer"]
dataset = group["ChargeContainer_0"]
data = dataset[:]
# print("data",data)
for tup in data:
Expand Down Expand Up @@ -616,7 +616,7 @@ def finish(self, bootstrap=False, *args, **kwargs):

for thing in output_file:
group = output_file[thing]
dataset = group["ToMContainer"]
dataset = group["ToMContainer_0"]
data = dataset[:]
# print("data",data)
for tup in data:
Expand Down Expand Up @@ -1036,7 +1036,7 @@ def finish(self, *args, **kwargs):

for thing in output_file:
group = output_file[thing]
dataset = group["PedestalContainer"]
dataset = group["PedestalContainer_0"]
data = dataset[:]
# print("data",data)
for tup in data:
Expand Down Expand Up @@ -1243,7 +1243,7 @@ def finish(self, *args, **kwargs):

for thing in output_file:
group = output_file[thing]
dataset = group["UCTSContainer"]
dataset = group["UCTSContainer_0"]
data = dataset[:]
for tup in data:
try:
Expand Down Expand Up @@ -1315,7 +1315,7 @@ def finish(self, *args, **kwargs):

for thing in output_file:
group = output_file[thing]
dataset = group["UCTSContainer"]
dataset = group["UCTSContainer_0"]
data = dataset[:]
# print("data",data)
for tup in data:
Expand Down

0 comments on commit 7ec0b00

Please sign in to comment.