Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Kazuya Mochizuki
athena
Commits
20f27ed5
Commit
20f27ed5
authored
May 31, 2022
by
Peter Berta
Browse files
Merge branch '22.0-dq-13p6TeV' into '22.0'
Fix suffix matching to make more generic See merge request
atlas/athena!53831
parents
23b185d3
21d063a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
DataQuality/DataQualityConfigurations/python/DQCDispatch.py
View file @
20f27ed5
...
...
@@ -28,12 +28,8 @@ def getmodule(modname):
pass
# Does it match a pattern?
if
(
modname
.
endswith
(
'_900GeV'
)
or
modname
.
endswith
(
'_2p76TeV'
)
or
modname
.
endswith
(
'_5TeV'
)
or
modname
.
endswith
(
'_7TeV'
)
or
modname
.
endswith
(
'_8TeV'
)
or
modname
.
endswith
(
'_13TeV'
)
if
(
modname
.
endswith
(
'GeV'
)
or
modname
.
endswith
(
'TeV'
)
or
modname
.
endswith
(
'_calib'
)
or
modname
.
endswith
(
'_comm'
)):
from
.
import
base_data
;
return
base_data
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment