LSSTApplications  18.1.0
LSSTDataManagementBasePackage
sourceContinued.py
Go to the documentation of this file.
1 #
2 # LSST Data Management System
3 # Copyright 2017 LSST/AURA.
4 #
5 # This product includes software developed by the
6 # LSST Project (http://www.lsst.org/).
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the LSST License Statement and
19 # the GNU General Public License along with this program. If not,
20 # see <http://www.lsstcorp.org/LegalNotices/>.
21 #
22 
23 __all__ = []
24 
25 from lsst.utils import continueClass
26 from ..base import Catalog
27 from .source import SourceCatalog, SourceTable
28 
29 Catalog.register("Source", SourceCatalog)
30 
31 
32 @continueClass # noqa: F811
34 
35  def getChildren(self, parent, *args):
36  """Return the subset of self for which the parent field equals the given value.
37 
38  In order for this method to return the correct result, it must be sorted by parent
39  (i.e. self.isSorted(SourceTable.getParentKey()) must be True). This is naturally the
40  case with SourceCatalogs produced by the detection and deblending tasks, but it may
41  not be true when concatenating multiple such catalogs.
42 
43  Additional Catalogs or sequences whose elements correspond in order to the records
44  of self (i.e. zip(self, *args) is valid) will be subset using the same slice object
45  used on self, and these subsets will be returned along with the subset of self.
46  """
47  if not self.isSorted(SourceTable.getParentKey()):
48  raise AssertionError(
49  "The table is not sorted by parent, so cannot getChildren")
50  s = self.equal_range(parent, SourceTable.getParentKey())
51  if args:
52  return (self[s],) + tuple(arg[s] for arg in args)
53  else:
54  return self[s]