|
LSSTApplications
8.0.0.0+107,8.0.0.1+13,9.1+18,9.2,master-g084aeec0a4,master-g0aced2eed8+6,master-g15627eb03c,master-g28afc54ef9,master-g3391ba5ea0,master-g3d0fb8ae5f,master-g4432ae2e89+36,master-g5c3c32f3ec+17,master-g60f1e072bb+1,master-g6a3ac32d1b,master-g76a88a4307+1,master-g7bce1f4e06+57,master-g8ff4092549+31,master-g98e65bf68e,master-ga6b77976b1+53,master-gae20e2b580+3,master-gb584cd3397+53,master-gc5448b162b+1,master-gc54cf9771d,master-gc69578ece6+1,master-gcbf758c456+22,master-gcec1da163f+63,master-gcf15f11bcc,master-gd167108223,master-gf44c96c709
LSSTDataManagementBasePackage
|
Parameters for the clustering algorithm and its internals. More...
#include <ClusteringControl.h>
Public Member Functions | |
| ClusteringControl () | |
| ~ClusteringControl () | |
| lsst::afw::geom::Angle const | getEpsilon () const |
| lsst::afw::geom::Angle const | getLeafExtentThreshold () const |
| void | validate () const |
Public Attributes | |
| double | epsilonArcsec |
| "Clustering distance (arcsec) to use when generating clusters with\n" "the OPTICS algorithm. If a source S has at least minNeighbors\n" "other sources within an angular separation of epsilonArcsec, then\n" "it is always assigned to a cluster.\n" ; More... | |
| int | minNeighbors |
| "The minimum cardinality of the epsilonArcsec-neighborhood of a source\n" "S for S to be considered a core-source by the OPTICS algorithm. Core\n" "sources are always assigned to a cluster, whereas sources with\n" "epsilonArcsec-neighborhoods containing less than minNeighbors sources\n" "may or may not be. If such a source is assigned to a cluster, it is\n" "called a border source. Otherwise, it is called a noise source.\n" "\n" "This parameter is essentially a lower bound on the number of times\n" "an astrophysical object must be detected before its detections are\n" "clustered and turned into a catalog entry and can be tuned to avoid\n" "generating too many spurious entries. To ensure that every source is\n" "assigned to a cluster, set the value to zero. However, setting the\n" "value to a non-negligeable fraction of the number of times the sky is\n" "covered by the data-set in question will typically result in better\n" "clusters. There is currently no way to adjust the value to account\n" "for data-sets with non uniform coverage.\n" ; More... | |
| int | pointsPerLeaf |
| "A performance tuning parameter for the k-d tree used internally by\n" "the OPTICS implementation. The height of the tree is picked such\n" "that no leaf will contain more than pointsPerLeaf sources. A value\n" "in the tens of sources is generally a good pick.\n" ; More... | |
| double | leafExtentThresholdArcsec |
| "A performance tuning parameter for the k-d tree used internally by\n" "the OPTICS implementation. Nodes that have a maximum extent below\n" "this threshold value in each dimension are not subdivided. The value\n" "should be of the same order as epsilonArcsec - nodes much smaller\n" "than this are useless in the sense that the sources belonging to\n" "such a node become increasingly likely to all lie in the\n" "neighborhood of a query point. Note also that the k-d tree\n" "implementation does not store bounding boxes for nodes, meaning\n" "that an entire node cannot be determined to satisfy a range\n" "query without traversal of its children/contents. This saves on tree\n" "size, and makes sense for the target use-case because query regions\n" "are typically very small.\n" ; More... | |
Parameters for the clustering algorithm and its internals.
Definition at line 40 of file ClusteringControl.h.
| lsst::ap::cluster::ClusteringControl::ClusteringControl | ( | ) |
Definition at line 38 of file ClusteringControl.cc.
| lsst::ap::cluster::ClusteringControl::~ClusteringControl | ( | ) |
Definition at line 47 of file ClusteringControl.cc.
|
inline |
Definition at line 88 of file ClusteringControl.h.
|
inline |
Definition at line 92 of file ClusteringControl.h.
| void lsst::ap::cluster::ClusteringControl::validate | ( | ) | const |
Definition at line 49 of file ClusteringControl.cc.
| double lsst::ap::cluster::ClusteringControl::epsilonArcsec |
"Clustering distance (arcsec) to use when generating clusters with\n" "the OPTICS algorithm. If a source S has at least minNeighbors\n" "other sources within an angular separation of epsilonArcsec, then\n" "it is always assigned to a cluster.\n" ;
Definition at line 48 of file ClusteringControl.h.
| double lsst::ap::cluster::ClusteringControl::leafExtentThresholdArcsec |
"A performance tuning parameter for the k-d tree used internally by\n" "the OPTICS implementation. Nodes that have a maximum extent below\n" "this threshold value in each dimension are not subdivided. The value\n" "should be of the same order as epsilonArcsec - nodes much smaller\n" "than this are useless in the sense that the sources belonging to\n" "such a node become increasingly likely to all lie in the\n" "neighborhood of a query point. Note also that the k-d tree\n" "implementation does not store bounding boxes for nodes, meaning\n" "that an entire node cannot be determined to satisfy a range\n" "query without traversal of its children/contents. This saves on tree\n" "size, and makes sense for the target use-case because query regions\n" "are typically very small.\n" ;
Definition at line 86 of file ClusteringControl.h.
| int lsst::ap::cluster::ClusteringControl::minNeighbors |
"The minimum cardinality of the epsilonArcsec-neighborhood of a source\n" "S for S to be considered a core-source by the OPTICS algorithm. Core\n" "sources are always assigned to a cluster, whereas sources with\n" "epsilonArcsec-neighborhoods containing less than minNeighbors sources\n" "may or may not be. If such a source is assigned to a cluster, it is\n" "called a border source. Otherwise, it is called a noise source.\n" "\n" "This parameter is essentially a lower bound on the number of times\n" "an astrophysical object must be detected before its detections are\n" "clustered and turned into a catalog entry and can be tuned to avoid\n" "generating too many spurious entries. To ensure that every source is\n" "assigned to a cluster, set the value to zero. However, setting the\n" "value to a non-negligeable fraction of the number of times the sky is\n" "covered by the data-set in question will typically result in better\n" "clusters. There is currently no way to adjust the value to account\n" "for data-sets with non uniform coverage.\n" ;
Definition at line 66 of file ClusteringControl.h.
| int lsst::ap::cluster::ClusteringControl::pointsPerLeaf |
"A performance tuning parameter for the k-d tree used internally by\n" "the OPTICS implementation. The height of the tree is picked such\n" "that no leaf will contain more than pointsPerLeaf sources. A value\n" "in the tens of sources is generally a good pick.\n" ;
Definition at line 72 of file ClusteringControl.h.
1.8.5