Skip to content

Commit 63444c7

Browse files
committed
Fix name of ITS QC tasks
Should contain 'QC' for regex filtering
1 parent 0aa78f8 commit 63444c7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

MC/bin/o2dpg_qc_finalization_workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ def add_QC_postprocessing(taskName, qcConfigPath, needs, runSpecific, prodSpecif
102102
add_QC_finalization('TOFMatchQC', 'json://${O2DPG_ROOT}/MC/config/QC/json/tofMatchedTracks_ITSTPCTOF_TPCTOF_direct_MC.json')
103103
add_QC_finalization('tofDigitsQC', 'json://${O2DPG_ROOT}/MC/config/QC/json/tofdigits.json')
104104
add_QC_finalization('TOFMatchWithTRDQC', 'json://${O2DPG_ROOT}/MC/config/QC/json/tofMatchedTracks_AllTypes_direct_MC.json')
105-
add_QC_finalization('ITSTrackSimTask', 'json://${O2DPG_ROOT}/MC/config/QC/json/its-mc-tracks-qc.json')
106-
add_QC_finalization('ITSTracksClusters', 'json://${O2DPG_ROOT}/MC/config/QC/json/its-clusters-tracks-qc.json')
105+
add_QC_finalization('ITSTrackSimTaskQC', 'json://${O2DPG_ROOT}/MC/config/QC/json/its-mc-tracks-qc.json')
106+
add_QC_finalization('ITSTracksClustersQC', 'json://${O2DPG_ROOT}/MC/config/QC/json/its-clusters-tracks-qc.json')
107107
if isActive('MID'):
108108
add_QC_finalization('MIDTaskQC', 'json://${O2DPG_ROOT}/MC/config/QC/json/mid-task.json')
109109
if isActive('MCH'):

MC/bin/o2dpg_sim_workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1938,12 +1938,12 @@ def remove_json_prefix(path):
19381938
readerCommand='o2-global-track-cluster-reader --track-types "ITS-TPC-TOF,TPC-TOF,TPC,ITS-TPC-TRD,ITS-TPC-TRD-TOF,TPC-TRD,TPC-TRD-TOF" --cluster-types none',
19391939
configFilePath='json://${O2DPG_ROOT}/MC/config/QC/json/tofMatchedTracks_AllTypes_direct_MC.json')
19401940
### ITS
1941-
addQCPerTF(taskName='ITSTrackSimTask',
1941+
addQCPerTF(taskName='ITSTrackSimTaskQC',
19421942
needs=[ITSRECOtask['name']],
19431943
readerCommand='o2-global-track-cluster-reader --track-types "ITS" --cluster-types "ITS"',
19441944
configFilePath='json://${O2DPG_ROOT}/MC/config/QC/json/its-mc-tracks-qc.json')
19451945

1946-
addQCPerTF(taskName='ITSTracksClusters',
1946+
addQCPerTF(taskName='ITSTracksClustersQC',
19471947
needs=[ITSRECOtask['name']],
19481948
readerCommand='o2-global-track-cluster-reader --track-types "ITS" --cluster-types "ITS"',
19491949
configFilePath='json://${O2DPG_ROOT}/MC/config/QC/json/its-clusters-tracks-qc.json')

0 commit comments

Comments
 (0)