Skip to content
Snippets Groups Projects
Commit 2bf3c645 authored by Alkaid Cheng's avatar Alkaid Cheng
Browse files

fix issue of not getting the correct set of merge samples in NTuplePorcessTool

parent 410bf015
No related branches found
No related tags found
1 merge request!32Dev
Pipeline #4637235 failed
__version__ = "0.6.4.0"
__version__ = "0.6.4.1"
......@@ -75,7 +75,7 @@ class NTupleProcessTool(ConfigurableObject):
# fill missing samples
for sample in self.all_samples:
if ((sample not in merge_samples) and
all(sample not in _samples for _samples in merge_samples)):
all(sample not in _samples for _samples in merge_samples.values())):
self.all_merged_samples.append(sample)
def load_processor_config(self, config_path:str,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment