Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
atlas
athena
Commits
a6792ec0
Commit
a6792ec0
authored
Sep 28, 2017
by
Antonia Strubig
Browse files
ATR16725, updated to allow Monitoring as stream config
parent
a38f7d57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Trigger/TrigConfiguration/TrigConfStorage/src/ConfigurationCheck.cxx
View file @
a6792ec0
...
...
@@ -1783,7 +1783,7 @@ private:
class
PEBCalibCheck
:
public
TrigConfTest
{
public:
PEBCalibCheck
()
:
TrigConfTest
(
"PEBCalibrationStream"
,
"
Check if a
ll streams
that use PEB ar
e of type calibration"
,
WARNING
),
:
TrigConfTest
(
"PEBCalibrationStream"
,
"
A
ll streams
with PEB must b
e of type calibration
or monitoring
"
,
WARNING
),
m_nonCalibPEB
(
""
)
{}
...
...
@@ -1821,7 +1821,7 @@ public:
for
(
const
HLTStreamTag
*
s
:
ch
->
streams
())
{
// m_nonCalibPEB += ch->chain_name() + " stream type: " + s->type() + ", ";
if
(
s
->
type
()
!=
"calibration"
)
m_nonCalibPEB
+=
ch
->
chain_name
()
+
", stream: "
+
s
->
stream
()
+
", stream type: "
+
s
->
type
()
+
", "
;
if
(
s
->
type
()
!=
"calibration"
&&
s
->
type
()
!=
"monitoring"
)
m_nonCalibPEB
+=
ch
->
chain_name
()
+
", stream: "
+
s
->
stream
()
+
", stream type: "
+
s
->
type
()
+
", "
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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