Removed unused Tally.get_tally_id(...) routine

This commit is contained in:
Will Boyd 2015-05-25 09:20:31 -04:00
parent c5f7f8efea
commit bf1b7a6ad8

View file

@ -652,28 +652,6 @@ class StatePoint(object):
return tally
def get_tally_id(self, score, filters, name='', estimator='tracklength'):
"""Retrieve the Tally ID for a given list of filters and score(s).
Parameters
----------
score : str
The score string
filters : list
A list of Filter objects
name : str
The name specified for the Tally (default is '')
estimator: str
The type of estimator ('tracklength' (default) or 'analog')
"""
tally = self.get_tally(score, filters, name, estimator)
return tally._id
def link_with_summary(self, summary):
if not isinstance(summary, openmc.summary.Summary):