Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QuickStats
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alkaid Cheng
QuickStats
Commits
2bf3c645
Commit
2bf3c645
authored
2 years ago
by
Alkaid Cheng
Browse files
Options
Downloads
Patches
Plain Diff
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
!32
Dev
Pipeline
#4637235
failed
2 years ago
Stage: run
Stage: diff
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
quickstats/_version.py
+1
-1
1 addition, 1 deletion
quickstats/_version.py
quickstats/analysis/ntuple_process_tool.py
+1
-1
1 addition, 1 deletion
quickstats/analysis/ntuple_process_tool.py
with
2 additions
and
2 deletions
quickstats/_version.py
+
1
−
1
View file @
2bf3c645
__version__
=
"
0.6.4.
0
"
__version__
=
"
0.6.4.
1
"
This diff is collapsed.
Click to expand it.
quickstats/analysis/ntuple_process_tool.py
+
1
−
1
View file @
2bf3c645
...
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment