Skip to content

Commit c7c3ef6

Browse files
committed
Adapt to new format for ITS|MFT dictionary files
needed since these objects have changed on the CCDB server fixes https://alice.its.cern.ch/jira/browse/O2-2833
1 parent 4914db1 commit c7c3ef6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MC/bin/o2dpg_sim_workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,11 +316,11 @@ def getDPL_global_options(bigshm=False):
316316
# Eventually, these files/objects should be queried directly from within these tasks?
317317
# TODO: add correct timestamp for query
318318
ITS_DICT_DOWNLOADER_TASK = createTask(name='itsdictdownloader', cpu='0')
319-
ITS_DICT_DOWNLOADER_TASK['cmd'] = '[ -f ITSdictionary.bin ] || ${O2_ROOT}/bin/o2-ccdb-downloadccdbfile --host http://alice-ccdb.cern.ch/ -p ITS/Calib/ClusterDictionary -o ITSdictionary.bin --no-preserve-path --timestamp ' + str(args.timestamp)
319+
ITS_DICT_DOWNLOADER_TASK['cmd'] = '[ -f ITSdictionary.root ] || ${O2_ROOT}/bin/o2-ccdb-downloadccdbfile --host http://alice-ccdb.cern.ch/ -p ITS/Calib/ClusterDictionary -o ITSdictionary.root --no-preserve-path --timestamp ' + str(args.timestamp)
320320
workflow['stages'].append(ITS_DICT_DOWNLOADER_TASK)
321321

322322
MFT_DICT_DOWNLOADER_TASK = createTask(name='mftdictdownloader', cpu='0')
323-
MFT_DICT_DOWNLOADER_TASK['cmd'] = '[ -f MFTdictionary.bin ] || ${O2_ROOT}/bin/o2-ccdb-downloadccdbfile --host http://alice-ccdb.cern.ch/ -p MFT/Calib/ClusterDictionary -o MFTdictionary.bin --no-preserve-path --timestamp ' + str(args.timestamp)
323+
MFT_DICT_DOWNLOADER_TASK['cmd'] = '[ -f MFTdictionary.root ] || ${O2_ROOT}/bin/o2-ccdb-downloadccdbfile --host http://alice-ccdb.cern.ch/ -p MFT/Calib/ClusterDictionary -o MFTdictionary.root --no-preserve-path --timestamp ' + str(args.timestamp)
324324
workflow['stages'].append(MFT_DICT_DOWNLOADER_TASK)
325325

326326
# loop over timeframes

0 commit comments

Comments
 (0)