File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ def get_additional_workflows(input_aod):
189189 found_O2collision_001 = False
190190 found_O2zdc_001 = False
191191 found_O2bc_001 = False
192+ found_O2trackextra_001 = False
192193 for i in froot .GetListOfKeys ():
193194 if "DF_" not in i .GetName ():
194195 continue
@@ -202,12 +203,16 @@ def get_additional_workflows(input_aod):
202203 found_O2zdc_001 = True
203204 if "O2bc_001" in j .GetName ():
204205 found_O2bc_001 = True
206+ if "O2trackextra_001" in j .GetName ():
207+ found_O2trackextra_001 = True
205208 if not found_O2collision_001 :
206209 additional_workflows .append ("o2-analysis-collision-converter --doNotSwap" )
207210 if not found_O2zdc_001 :
208211 additional_workflows .append ("o2-analysis-zdc-converter" )
209212 if not found_O2bc_001 :
210213 additional_workflows .append ("o2-analysis-bc-converter" )
214+ if not found_O2trackextra_001 :
215+ additional_workflows .append ("o2-analysis-tracks-extra-converter" )
211216 break
212217 return additional_workflows
213218
You can’t perform that action at this time.
0 commit comments