Skip to content
Snippets Groups Projects
Commit ee02442c authored by Alex Pearce's avatar Alex Pearce
Browse files

Use configuration-dependent naming.

Addresses !78 (comment 295430).
parent f0c00377
No related branches found
No related tags found
2 merge requests!85merge master to future,!79Place Moore RecSummary in a stream-dependent location
......@@ -734,7 +734,8 @@ class Tesla(LHCbConfigurableUser):
return trig1
def _selReportsCheck(self, loc='Hlt2/SelReports'):
return TESCheck('Hlt2SelReportsCheck', Inputs=[loc], Stop=False)
name = '{0}Check'.format(loc.replace('/', ''))
return TESCheck(name, Inputs=[loc], Stop=False)
def _configureOutputTurboSP(self):
trigger_lines = self.getProp('TriggerLines')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment