Skip to content

Commit fba4c22

Browse files
committed
Disable reading tf1 Kine files for EventStat
No longer necessary and prevents early sgn_Kine.root removal.
1 parent 5f04d25 commit fba4c22

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

MC/bin/o2dpg_determine_eventstat.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,11 @@ def read_AO2D_eventcount(file):
121121
return eventcount
122122

123123
AO2D_eventcount = read_AO2D_eventcount(args.aod_file)
124-
GEANT_eventcount = read_accumulated_GEANT_eventcount()
125-
if AO2D_eventcount != GEANT_eventcount:
126-
print ("WARN: AO2D MC event count and GEANT event count differ")
124+
125+
# for debugging
126+
# GEANT_eventcount = read_accumulated_GEANT_eventcount()
127+
# if AO2D_eventcount != GEANT_eventcount:
128+
# print ("WARN: AO2D MC event count and GEANT event count differ")
127129

128130
print ("Found " + str(AO2D_eventcount) + " events in AO2D file")
129131
write_stat_file(AO2D_eventcount)

0 commit comments

Comments
 (0)