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
Public Member Functions | Public Attributes | List of all members
lsst::ap::cluster::SourceProcessingControl Struct Reference

Parameters for source processing. More...

#include <SourceProcessingControl.h>

Public Member Functions

 SourceProcessingControl ()
 
 ~SourceProcessingControl ()
 

Public Attributes

std::string exposurePrefix
 "Prefix for exposure related fields in the output source schema.\n" "May be empty.\n" ; More...
 
std::string clusterPrefix
 "Prefix for cluster related fields in the output source schema.\n" "May be empty.\n" ; More...
 
bool multiBand
 "If true, sources have been detected/measured on multi-band\n" "exposures (e.g. chi-squared coadds) and are not filter\n" "specific.\n" ; More...
 
bool coadd
 "If true, sources have been detected/measured on coadd exposures,\n" "and have no associated time-stamp/epoch.\n" ; More...
 
std::vector< std::string > badFlagFields
 "A list of flag field names. If an input source has any of the\n" "corresponding flag bits set, then the source is considered \"bad",
" "and does not participate in spatial clustering.
" ; More...
 
double fluxScale
 "Scaling factor applied to F/F_0 prior to averaging, where F is\n" "an uncalibrated source flux and F_0 is the flux of a 0-magnitude\n" "object for the corresponding exposure.\n" ; More...
 
std::string fluxUnit
 "Unit of calibrated flux.\n" ; More...
 
std::vector< std::string > fluxFields
 "A list of flux field names which should be carried over from input\n" "source tables to output source cluster tables. Input source tables\n" "are expected to contain fields '<flux>', '<flux>.err' and\n" "'<flux>.flags' for each list entry ('<flux>').\n" ; More...
 
std::vector< std::string > shapeFields
 "A list of shape field names which should be carried over from input\n" "source tables to output source cluster tables. Input source tables\n" "are expected to contain fields '<shape>', '<shape>.err' and\n" "'<shape>.flags' for each list entry ('<shape>').\n" ; More...
 

Detailed Description

Parameters for source processing.

Definition at line 41 of file SourceProcessingControl.h.

Constructor & Destructor Documentation

lsst::ap::cluster::SourceProcessingControl::SourceProcessingControl ( )

Definition at line 33 of file SourceProcessingControl.cc.

33  :
34  exposurePrefix("exposure"),
35  clusterPrefix("cluster"),
36  multiBand(false),
37  coadd(false),
38  badFlagFields(),
39  // The default flux scale S is chosen such that the AB magnitude
40  // -2.5*log10(S*F/F_0) - 48.6 = 0 when F = F_0, where F is an
41  // uncalibrated flux and F_0 is the flux of a 0-magnitude source.
42  fluxScale(3.63078054770101342467371212362e-20),
43  fluxUnit("erg/s/cm^2/Hz"),
44  fluxFields(),
45  shapeFields()
46 {
47  fluxFields.push_back("flux.gaussian");
48  fluxFields.push_back("flux.naive");
49  fluxFields.push_back("flux.psf");
50  fluxFields.push_back("flux.sinc");
51  fluxFields.push_back("flux.kron");
52  fluxFields.push_back("multishapelet.exp.flux");
53  fluxFields.push_back("multishapelet.dev.flux");
54  fluxFields.push_back("multishapelet.combo.flux");
55  shapeFields.push_back("shape.sdss");
56 }
std::vector< std::string > shapeFields
&quot;A list of shape field names which should be carried over from input\n&quot; &quot;source tables to output s...
double fluxScale
&quot;Scaling factor applied to F/F_0 prior to averaging, where F is\n&quot; &quot;an uncalibrated source flux and F...
std::string clusterPrefix
&quot;Prefix for cluster related fields in the output source schema.\n&quot; &quot;May be empty.\n&quot; ; ...
bool coadd
&quot;If true, sources have been detected/measured on coadd exposures,\n&quot; &quot;and have no associated time-sta...
std::vector< std::string > badFlagFields
&quot;A list of flag field names. If an input source has any of the\n&quot; &quot;corresponding flag bits set...
std::vector< std::string > fluxFields
&quot;A list of flux field names which should be carried over from input\n&quot; &quot;source tables to output so...
bool multiBand
&quot;If true, sources have been detected/measured on multi-band\n&quot; &quot;exposures (e.g. chi-squared coadds) a...
std::string fluxUnit
&quot;Unit of calibrated flux.\n&quot; ;
std::string exposurePrefix
&quot;Prefix for exposure related fields in the output source schema.\n&quot; &quot;May be empty.\n&quot; ;
lsst::ap::cluster::SourceProcessingControl::~SourceProcessingControl ( )

Definition at line 58 of file SourceProcessingControl.cc.

58 { }

Member Data Documentation

std::vector<std::string> lsst::ap::cluster::SourceProcessingControl::badFlagFields

"A list of flag field names. If an input source has any of the\n" "corresponding flag bits set, then the source is considered \"bad",
" "and does not participate in spatial clustering.
" ;

Definition at line 65 of file SourceProcessingControl.h.

std::string lsst::ap::cluster::SourceProcessingControl::clusterPrefix

"Prefix for cluster related fields in the output source schema.\n" "May be empty.\n" ;

Definition at line 51 of file SourceProcessingControl.h.

bool lsst::ap::cluster::SourceProcessingControl::coadd

"If true, sources have been detected/measured on coadd exposures,\n" "and have no associated time-stamp/epoch.\n" ;

Definition at line 60 of file SourceProcessingControl.h.

std::string lsst::ap::cluster::SourceProcessingControl::exposurePrefix

"Prefix for exposure related fields in the output source schema.\n" "May be empty.\n" ;

Definition at line 47 of file SourceProcessingControl.h.

std::vector<std::string> lsst::ap::cluster::SourceProcessingControl::fluxFields

"A list of flux field names which should be carried over from input\n" "source tables to output source cluster tables. Input source tables\n" "are expected to contain fields '<flux>', '<flux>.err' and\n" "'<flux>.flags' for each list entry ('<flux>').\n" ;

Definition at line 79 of file SourceProcessingControl.h.

double lsst::ap::cluster::SourceProcessingControl::fluxScale

"Scaling factor applied to F/F_0 prior to averaging, where F is\n" "an uncalibrated source flux and F_0 is the flux of a 0-magnitude\n" "object for the corresponding exposure.\n" ;

Definition at line 70 of file SourceProcessingControl.h.

std::string lsst::ap::cluster::SourceProcessingControl::fluxUnit

"Unit of calibrated flux.\n" ;

Definition at line 73 of file SourceProcessingControl.h.

bool lsst::ap::cluster::SourceProcessingControl::multiBand

"If true, sources have been detected/measured on multi-band\n" "exposures (e.g. chi-squared coadds) and are not filter\n" "specific.\n" ;

Definition at line 56 of file SourceProcessingControl.h.

std::vector<std::string> lsst::ap::cluster::SourceProcessingControl::shapeFields

"A list of shape field names which should be carried over from input\n" "source tables to output source cluster tables. Input source tables\n" "are expected to contain fields '<shape>', '<shape>.err' and\n" "'<shape>.flags' for each list entry ('<shape>').\n" ;

Definition at line 85 of file SourceProcessingControl.h.


The documentation for this struct was generated from the following files: