Takes a list of primary datasets (PDs) and the AlCaRecoMatrix (a dictinary) and returns a string with all the AlCaRecos for the selected PDs separated by the '+' character without duplicates.
Definition at line 105 of file autoAlca.py.
References submitPVValidationJobs.split().
107 """Takes a list of primary datasets (PDs) and the AlCaRecoMatrix (a dictinary) and returns a string with all the AlCaRecos for the selected PDs separated by the '+' character without duplicates."""
110 alCaRecoList.extend(matrix[pd].
split(
"+"))
112 alCaRecoList = set(alCaRecoList)
114 for alCaReco
in alCaRecoList:
116 stringList += alCaReco
118 stringList +=
'+'+alCaReco