clean up depreciated/commented code

This commit is contained in:
Jerome Kieffer 2019-04-29 15:57:45 +02:00
parent 6d6d25dd34
commit 212710ac0c
1 changed files with 1 additions and 8 deletions

View File

@ -30,20 +30,13 @@ __author__ = "Jerome Kieffer"
__contact__ = "Jerome.Kieffer@ESRF.eu"
__license__ = "MIT"
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
__date__ = "25/04/2019"
__date__ = "29/04/2019"
__status__ = "development"
import logging
logger = logging.getLogger(__name__)
from threading import Semaphore
# from collections import namedtuple
#
# Integrate1dResult = namedtuple("Integrate1dResult", ["bins", "intensity", "propagated"])
# Integrate2dResult = namedtuple("Integrate2dResult", ["intensity", "bins0", "bins1", "propagated"])
# Integrate1dWithErrorResult = namedtuple("Integrate1dWithErrorResult", ["bins", "intensity", "error", "propagated"])
# Integrate2dWithErrorResult = namedtuple("Integrate2dWithErrorResult", ["intensity", "error", "bins0", "bins1", "propagated"])
class Engine(object):
"""This class defines a regrid-engine with its locking mechanism"""