PhotonTransferCurveDataset¶
- class lsst.ip.isr.PhotonTransferCurveDataset(ampNames=[], ptcFitType=None, covMatrixSide=1, covMatrixSideFullCovFit=None, **kwargs)¶
- Bases: - IsrCalib- A simple class to hold the output data from the PTC task. - The dataset is made up of a dictionary for each item, keyed by the amplifiers’ names, which much be supplied at construction time. New items cannot be added to the class to save accidentally saving to the wrong property, and the class can be frozen if desired. inputExpIdPairs records the exposures used to produce the data. When fitPtc() or fitCovariancesAstier() is run, a mask is built up, which is by definition always the same length as inputExpIdPairs, rawExpTimes, rawMeans and rawVars, and is a list of bools, which are incrementally set to False as points are discarded from the fits. PTC fit parameters for polynomials are stored in a list in ascending order of polynomial term, i.e. par[0]*x^0 + par[1]*x + par[2]*x^2 etc with the length of the list corresponding to the order of the polynomial plus one. - Parameters:
- ampNameslist
- List with the names of the amplifiers of the detector at hand. 
- ptcFitTypestr, optional
- Type of model fitted to the PTC: “POLYNOMIAL”, “EXPAPPROXIMATION”, or “FULLCOVARIANCE”. 
- covMatrixSideint, optional
- Maximum lag of measured covariances (size of square covariance matrices). 
- covMatrixSideFullCovFit`int, optional
- Maximum covariances lag for FULLCOVARIANCE fit. It should be less or equal than covMatrixSide. 
- kwargsdict, optional
- Other keyword arguments to pass to the parent init. 
 
- ampNames
 - Notes - The stored attributes are: - badAmpslist[str]
- List with bad amplifiers names. 
- inputExpIdPairsdict, [str,list]
- Dictionary keyed by amp names containing the input exposures IDs. 
- expIdMaskdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the mask produced after outlier rejection. The mask produced by the “FULLCOVARIANCE” option may differ from the one produced in the other two PTC fit types. 
- rawExpTimesdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the unmasked exposure times. 
- rawMeansdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the unmasked average of the means of the exposures in each flat pair. 
- rawVarsdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the variance of the difference image of the exposures in each flat pair. 
- rowMeanVariancedict, [str,np.ndarray]
- Dictionary keyed by amp names containing the variance of the means of the rows of the difference image of the exposures in each flat pair. 
- histVarsdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the variance of the difference image of the exposures in each flat pair estimated by fitting a Gaussian model. 
- histChi2Dofsdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the chi-squared per degree of freedom fitting the difference image to a Gaussian model. 
- kspValuesdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the KS test p-value from fitting the difference image to a Gaussian model. 
- gaindict, [str,float]
- Dictionary keyed by amp names containing the fitted gains. 
- gainErrdict, [str,float]
- Dictionary keyed by amp names containing the errors on the fitted gains. 
- noiseListdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the mean read noise from each flat pair (as measured from overscan). 
- noisedict, [str,float]
- Dictionary keyed by amp names containing the fitted noise. 
- noiseErrdict, [str,float]
- Dictionary keyed by amp names containing the errors on the fitted noise. 
- ptcFitParsdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the fitted parameters of the PTC model for ptcFitTye in [“POLYNOMIAL”, “EXPAPPROXIMATION”]. 
- ptcFitParsErrordict, [str,np.ndarray]
- Dictionary keyed by amp names containing the errors on the fitted parameters of the PTC model for ptcFitTye in [“POLYNOMIAL”, “EXPAPPROXIMATION”]. 
- ptcFitChiSqdict, [str,float]
- Dictionary keyed by amp names containing the reduced chi squared of the fit for ptcFitTye in [“POLYNOMIAL”, “EXPAPPROXIMATION”]. 
- ptcTurnoffdict[str, `float]
- Flux value (in ADU) where the variance of the PTC curve starts decreasing consistently. 
- covariancesdict, [str,np.ndarray]
- Dictionary keyed by amp names containing a list of measured covariances per mean flux. 
- covariancesModeldict, [str,np.ndarray]
- Dictionary keyed by amp names containinging covariances model (Eq. 20 of Astier+19) per mean flux. 
- covariancesSqrtWeightsdict, [str,np.ndarray]
- Dictionary keyed by amp names containinging sqrt. of covariances weights. 
- aMatrixdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the “a” parameters from the model in Eq. 20 of Astier+19. 
- bMatrixdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the “b” parameters from the model in Eq. 20 of Astier+19. 
- noiseMatrixdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the “noise” parameters from the model in Eq. 20 of Astier+19. 
- covariancesModelNoBdict, [str,np.ndarray]
- Dictionary keyed by amp names containing covariances model (with ‘b’=0 in Eq. 20 of Astier+19) per mean flux. 
- aMatrixNoBdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the “a” parameters from the model in Eq. 20 of Astier+19 (and ‘b’ = 0). 
- noiseMatrixNoBdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the “noise” parameters from the model in Eq. 20 of Astier+19, with ‘b’ = 0. 
- finalVarsdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the masked variance of the difference image of each flat pair. If needed, each array will be right-padded with np.nan to match the length of rawExpTimes. 
- finalModelVarsdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the masked modeled variance of the difference image of each flat pair. If needed, each array will be right-padded with np.nan to match the length of rawExpTimes. 
- finalMeansdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the masked average of the means of the exposures in each flat pair. If needed, each array will be right-padded with np.nan to match the length of rawExpTimes. 
- photoChargesdict, [str,np.ndarray]
- Dictionary keyed by amp names containing the integrated photocharge for linearity calibration. 
- auxValuesdict, [str,np.ndarray]
- Dictionary of per-detector auxiliary header values that can be used for PTC, linearity computation. 
 - Version 1.1 adds the - ptcTurnoffattribute. Version 1.2 adds the- histVars,- histChi2Dofs, and- kspValuesattributes. Version 1.3 adds the- noiseMatrixand- noiseMatrixNoBattributes. Version 1.4 adds the- auxValuesattribute. Version 1.5 adds the- covMatrixSideFullCovFitattribute. Version 1.6 adds the- rowMeanVarianceattribute. Version 1.7 adds the- noiseListattribute.- Attributes Summary - Methods Summary - apply(target)- Method to apply the calibration to the target object. - calibInfoFromDict(dictionary)- Handle common keywords. - determineCalibClass(metadata, message)- Attempt to find calibration class in metadata. - fromDetector(detector)- Read metadata parameters from a detector. - fromDict(dictionary)- Construct a calibration from a dictionary of properties. - fromTable(tableList)- Construct calibration from a list of tables. - getExpIdsUsed(ampName)- Get the exposures used, i.e. not discarded, for a given amp. - Get the good amps from this PTC. - getGoodPoints(ampName)- Get the good points used for a given amp in the PTC. - Retrieve metadata associated with this calibration. - readFits(filename, **kwargs)- Read calibration data from a FITS file. - readText(filename, **kwargs)- Read calibration representation from a yaml/ecsv file. - setAmpValuesPartialDataset(ampName[, ...])- Set the amp values for a partial PTC Dataset (from cpExtractPtcTask). - setAuxValuesPartialDataset(auxDict)- Set a dictionary of auxiliary values for a partial dataset. - setMetadata(metadata)- Store a copy of the supplied metadata with this calibration. - toDict()- Return a dictionary containing the calibration properties. - toTable()- Construct a list of tables containing the information in this calibration. - updateMetadata(**kwargs)- Update calibration metadata. - updateMetadataFromExposures(exposures)- Extract and unify metadata information. - validate([other])- Validate that this calibration is defined and can be used. - validateGainNoiseTurnoffValues(ampName[, doWarn])- Ensure the gain, read noise, and PTC turnoff have sensible values. - writeFits(filename)- Write calibration data to a FITS file. - writeText(filename[, format])- Write the calibration data to a text file. - Attributes Documentation - requiredAttributes¶
 - Methods Documentation - apply(target)¶
- Method to apply the calibration to the target object. 
 - calibInfoFromDict(dictionary)¶
- Handle common keywords. - This isn’t an ideal solution, but until all calibrations expect to find everything in the metadata, they still need to search through dictionaries. - Parameters:
- dictionarydictorlsst.daf.base.PropertyList
- Source for the common keywords. 
 
- dictionary
- Raises:
- RuntimeError
- Raised if the dictionary does not match the expected OBSTYPE. 
 
 
 - classmethod determineCalibClass(metadata, message)¶
- Attempt to find calibration class in metadata. - Parameters:
- Returns:
- calibClassobject
- The class to use to read the file contents. Should be an - lsst.ip.isr.IsrCalibsubclass.
 
- calibClass
- Raises:
- ValueError
- Raised if the resulting calibClass is the base - lsst.ip.isr.IsrClass(which does not implement the content methods).
 
 
 - fromDetector(detector)¶
- Read metadata parameters from a detector. - Parameters:
- detectorlsst.afw.cameraGeom.detector
- Input detector with parameters to use. 
 
- detector
- Returns:
- caliblsst.ip.isr.PhotonTransferCurveDataset
- The calibration constructed from the detector. 
 
- calib
 
 - classmethod fromDict(dictionary)¶
- Construct a calibration from a dictionary of properties. Must be implemented by the specific calibration subclasses. - Parameters:
- dictionarydict
- Dictionary of properties. 
 
- dictionary
- Returns:
- caliblsst.ip.isr.PhotonTransferCurveDataset
- Constructed calibration. 
 
- calib
- Raises:
- RuntimeError
- Raised if the supplied dictionary is for a different calibration. 
 
 
 - classmethod fromTable(tableList)¶
- Construct calibration from a list of tables. This method uses the - fromDictmethod to create the calibration, after constructing an appropriate dictionary from the input tables.- Parameters:
- tableListlist[lsst.afw.table.Table]
- List of tables to use to construct the datasetPtc. 
 
- tableList
- Returns:
- caliblsst.ip.isr.PhotonTransferCurveDataset
- The calibration defined in the tables. 
 
- calib
 
 - getExpIdsUsed(ampName)¶
- Get the exposures used, i.e. not discarded, for a given amp. If no mask has been created yet, all exposures are returned. 
 - getGoodAmps()¶
- Get the good amps from this PTC. 
 - getGoodPoints(ampName)¶
- Get the good points used for a given amp in the PTC. - Parameters:
- ampNamestr
- Amplifier’s name. 
 
- ampName
- Returns:
- goodPointsnp.ndarray
- Boolean array of good points used in PTC. 
 
- goodPoints
 
 - getMetadata()¶
- Retrieve metadata associated with this calibration. - Returns:
- metalsst.daf.base.PropertyList
- Metadata. The returned - PropertyListcan be modified by the caller and the changes will be written to external files.
 
- meta
 
 - classmethod readFits(filename, **kwargs)¶
- Read calibration data from a FITS file. - Parameters:
- Returns:
- caliblsst.ip.isr.IsrCalib
- Calibration contained within the file. 
 
- calib
 
 - classmethod readText(filename, **kwargs)¶
- Read calibration representation from a yaml/ecsv file. - Parameters:
- Returns:
- calibIsrCalibType
- Calibration class. 
 
- calib
- Raises:
- RuntimeError
- Raised if the filename does not end in “.ecsv” or “.yaml”. 
 
 
 - setAmpValuesPartialDataset(ampName, inputExpIdPair=(-1, -1), rawExpTime=nan, rawMean=nan, rawVar=nan, rowMeanVariance=nan, photoCharge=nan, expIdMask=False, covariance=None, covSqrtWeights=None, gain=nan, noise=nan, histVar=nan, histChi2Dof=nan, kspValue=0.0, auxValues=None)¶
- Set the amp values for a partial PTC Dataset (from cpExtractPtcTask). - Parameters:
- ampNamestr
- Name of the amp to set the values. 
- inputExpIdPairtuple[int]
- Exposure IDs of input pair. 
- rawExpTimefloat, optional
- Exposure time for this exposure pair. 
- rawMeanfloat, optional
- Average of the means of the exposures in this pair. 
- rawVarfloat, optional
- Variance of the difference of the exposures in this pair. 
- rowMeanVariancefloat, optional
- Variance of the means of the rows in the difference image of the exposures in this pair. 
- photoChargefloat, optional
- Integrated photocharge for flat pair for linearity calibration. 
- expIdMaskbool, optional
- Flag setting if this exposure pair should be used (True) or not used (False). 
- covariancenp.ndarrayor None, optional
- Measured covariance for this exposure pair. 
- covSqrtWeightsnp.ndarrayor None, optional
- Measured sqrt of covariance weights in this exposure pair. 
- gainfloat, optional
- Estimated gain for this exposure pair. 
- noisefloat, optional
- Estimated read noise for this exposure pair. 
- histVarfloat, optional
- Variance estimated from fitting a histogram with a Gaussian model. 
- histChi2Doffloat, optional
- Chi-squared per degree of freedom from Gaussian histogram fit. 
- kspValuefloat, optional
- KS test p-value from the Gaussian histogram fit. 
 
- ampName
 
 - setAuxValuesPartialDataset(auxDict)¶
- Set a dictionary of auxiliary values for a partial dataset. 
 - setMetadata(metadata)¶
- Store a copy of the supplied metadata with this calibration. - Parameters:
- metadatalsst.daf.base.PropertyList
- Metadata to associate with the calibration. Will be copied and overwrite existing metadata. 
 
- metadata
 
 - toDict()¶
- Return a dictionary containing the calibration properties. The dictionary should be able to be round-tripped through - fromDict.- Returns:
- dictionarydict
- Dictionary of properties. 
 
- dictionary
 
 - toTable()¶
- Construct a list of tables containing the information in this calibration. - The list of tables should create an identical calibration after being passed to this class’s fromTable method. - Returns:
- tableListlist[astropy.table.Table]
- List of tables containing the linearity calibration information. 
 
- tableList
 
 - updateMetadata(**kwargs)¶
- Update calibration metadata. This calls the base class’s method after ensuring the required calibration keywords will be saved. - Parameters:
- setDatebool, optional
- Update the CALIBDATE fields in the metadata to the current time. Defaults to False. 
- kwargs
- Other keyword parameters to set in the metadata. 
 
- setDate
 
 - updateMetadataFromExposures(exposures)¶
- Extract and unify metadata information. - Parameters:
- exposureslist
- Exposures or other calibrations to scan. 
 
- exposures
 
 - validate(other=None)¶
- Validate that this calibration is defined and can be used. 
 - validateGainNoiseTurnoffValues(ampName, doWarn=False)¶
- Ensure the gain, read noise, and PTC turnoff have sensible values. - Parameters:
- ampNamestr
- Amplifier’s name. 
 
- ampName
 
 - writeFits(filename)¶
- Write calibration data to a FITS file. 
 - writeText(filename, format='auto')¶
- Write the calibration data to a text file. - Parameters:
- Returns:
- usedstr
- The name of the file used to write the data. This may differ from the input if the format is explicitly chosen. 
 
- used
- Raises:
- RuntimeError
- Raised if filename does not end in a known extension, or if all information cannot be written. 
 
 - Notes - The file is written to YAML/ECSV format and will include any associated metadata.