Source code for pyhetdex.cure.psfmodel

# Misc python library to support HETDEX software and data analysis
# Copyright (C) 2015, 2016  "The HETDEX collaboration"
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
from __future__ import absolute_import, print_function

__version__ = '$Id'

from pyhetdex.ltl.marray import FVector
from pyhetdex.tools import io_helpers


[docs]class PSFModelBase(object): def __init__(self, filename): _vdict = {2: PSFModel_2, 3: PSFModel_3} in_ = open(filename) fileversion = int(io_helpers.skip_commentlines(in_)) in_.close() if fileversion not in _vdict: raise IOError('Unsupported version of PSFModel file!') self._cls = _vdict[fileversion](filename)
[docs]class PSFModel(PSFModelBase): def __init__(self, filename): super(PSFModel, self).__init__(filename) self._cls.read() def __getattribute__(self, a): try: return super(PSFModel, self).__getattribute__(a) except AttributeError: return self._cls.__getattribute__(a) def __setattr__(self, a, v): try: return super(PSFModel, self).__setattr__(a, v) except AttributeError: # pragma: no cover return self._cls.__setattr__(a, v)
[docs]class PSFModel_2(object): def __init__(self, filename): self.filename = filename self.version = 0 self.minx = float(0) self.maxx = float(0) self.miny = float(0) self.maxy = float(0) self.sigx_par_ = FVector() self.sigy_par_ = FVector() self.h2y_par_ = FVector() self.h3y_par_ = FVector()
[docs] def read(self): with open(self.filename) as in_: self.version = int(io_helpers.skip_commentlines(in_)) self.minx = float(io_helpers.skip_commentlines(in_)) self.maxx = float(io_helpers.skip_commentlines(in_)) self.miny = float(io_helpers.skip_commentlines(in_)) self.maxy = float(io_helpers.skip_commentlines(in_)) self.sigx_par_.read(in_) self.sigy_par_.read(in_) self.h2y_par_.read(in_) self.h3y_par_.read(in_)
[docs]class PSFModel_3(PSFModel_2): def __init__(self, filename): super(PSFModel_3, self).__init__(filename) # Add new parameters self.minw = float(0) self.maxw = float(0) self.minf = float(0) self.maxf = float(0)
[docs] def read(self): # Overload the complete read routine with open(self.filename) as in_: self.version = int(io_helpers.skip_commentlines(in_)) self.minw = float(io_helpers.skip_commentlines(in_)) self.maxw = float(io_helpers.skip_commentlines(in_)) self.minf = float(io_helpers.skip_commentlines(in_)) self.maxf = float(io_helpers.skip_commentlines(in_)) self.minx = float(io_helpers.skip_commentlines(in_)) self.maxx = float(io_helpers.skip_commentlines(in_)) self.miny = float(io_helpers.skip_commentlines(in_)) self.maxy = float(io_helpers.skip_commentlines(in_)) self.sigx_par_.read(in_) self.sigy_par_.read(in_) self.h2y_par_.read(in_) self.h3y_par_.read(in_)