Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Commits
daaceb7b
Commit
daaceb7b
authored
7 years ago
by
Heather Russell
Browse files
Options
Downloads
Patches
Plain Diff
Changing exec to getattr in l1/Cabling, Limits
parent
997b992d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Trigger/TriggerCommon/TriggerMenu/python/l1/Cabling.py
+6
-7
6 additions, 7 deletions
Trigger/TriggerCommon/TriggerMenu/python/l1/Cabling.py
Trigger/TriggerCommon/TriggerMenu/python/l1/Limits.py
+4
-4
4 additions, 4 deletions
Trigger/TriggerCommon/TriggerMenu/python/l1/Limits.py
with
10 additions
and
11 deletions
Trigger/TriggerCommon/TriggerMenu/python/l1/Cabling.py
+
6
−
7
View file @
daaceb7b
...
...
@@ -146,8 +146,8 @@ class Cabling:
@staticmethod
def
calcBitnum
(
thrtype
):
# get the widths for the threshold types is defined in L1Common
exec
(
"
nbits = Limits
.
%s_bitnum
"
%
thrtype
)
return
nbits
# noqa: F821
nbits
=
getattr
(
Limits
,
'
%s_bitnum
'
%
thrtype
)
return
nbits
...
...
@@ -264,17 +264,16 @@ class InputCable:
"""
Gets the cable assignment from L1Common
"""
exec
(
"
cable = Limits.%s_cable
"
%
thrtype
)
cable
=
getattr
(
Limits
,
'
%s_cable
'
%
thrtype
)
# we change the format for run 2, the tuple now contains also the bit multiplicity, as it is not constant per type
infosize
=
(
len
(
cable
)
-
1
)
/
cable
[
0
]
# noqa: F821
infosize
=
(
len
(
cable
)
-
1
)
/
cable
[
0
]
if
infosize
==
5
:
cableAssign
=
[
tuple
(
cable
[
x
:
x
+
5
])
for
x
in
range
(
1
,
len
(
cable
),
5
)]
# noqa: F821
cableAssign
=
[
tuple
(
cable
[
x
:
x
+
5
])
for
x
in
range
(
1
,
len
(
cable
),
5
)]
else
:
#print "Cabling for threshold type %s is not yet defined for Run 2" % thrtype
bitnum
=
Cabling
.
calcBitnum
(
thrtype
)
cableAssign
=
[
tuple
(
cable
[
x
:
x
+
4
]
+
[
bitnum
])
for
x
in
range
(
1
,
len
(
cable
),
4
)]
# noqa: F821
cableAssign
=
[
tuple
(
cable
[
x
:
x
+
4
]
+
[
bitnum
])
for
x
in
range
(
1
,
len
(
cable
),
4
)]
return
cableAssign
...
...
This diff is collapsed.
Click to expand it.
Trigger/TriggerCommon/TriggerMenu/python/l1/Limits.py
+
4
−
4
View file @
daaceb7b
...
...
@@ -50,14 +50,14 @@ class Limits:
@staticmethod
def
getCTPdataformat
(
version
):
module
=
__import__
(
'
CTPfragment.CTPdataformat_v%i
'
%
version
,
globals
(),
locals
(),
[
'
CTPdataformat_v%i
'
%
version
],
-
1
)
exec
(
"
CTPdataformat = module
.
CTPdataformat_v%i
"
%
version
)
return
CTPdataformat
# noqa: F821
CTPdataformat
=
getattr
(
module
,
'
CTPdataformat_v%i
'
%
version
)
return
CTPdataformat
@staticmethod
def
getL1Common
(
version
):
module
=
__import__
(
'
L1Common.L1Common_v%i
'
%
version
,
globals
(),
locals
(),
[
'
L1Common_v%i
'
%
version
],
-
1
)
exec
(
"
L1Common = module
.
L1Common_v%i
"
%
version
)
return
L1Common
# noqa: F821
L1Common
=
getattr
(
module
,
'
L1Common_v%i
'
%
version
)
return
L1Common
@staticmethod
def
setLimits
(
CTPVersion
,
verbose
=
False
):
...
...
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