Definition at line 747 of file genericValidation.py.
def genericValidation.ValidationWithPlotsSummary.getsummaryitems |
( |
|
cls, |
|
|
|
folder |
|
) |
| |
Definition at line 749 of file genericValidation.py.
References submitPVValidationJobs.split().
752 with open(os.path.join(folder,
"{}Summary.txt".
format(cls.__name__)))
as f:
754 split = line.rstrip(
"\n").
split(
"\t")
756 for thing
in split[:]:
757 if thing.startswith(
"format="):
758 kwargs[
"format"] = thing.replace(
"format=",
"", 1)
760 if thing.startswith(
"latexname="):
761 kwargs[
"latexname"] = thing.replace(
"latexname=",
"", 1)
763 if thing.startswith(
"latexformat="):
764 kwargs[
"latexformat"] = thing.replace(
"latexformat=",
"", 1)
769 result.append(cls.SummaryItem(name, values, **kwargs))