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 36 of file autoAlca.py.
References submitPVValidationJobs.split().
38 """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."""
41 alCaRecoList.extend(matrix[pd].
split(
"+"))
43 alCaRecoList = set(alCaRecoList)
45 for alCaReco
in alCaRecoList:
47 stringList += alCaReco
49 stringList +=
'+'+alCaReco