Uses of Class
adams.data.multifilter.AbstractMultiSpectrumFilter
-
Packages that use AbstractMultiSpectrumFilter Package Description adams.data.multifilter adams.flow.transformer -
-
Uses of AbstractMultiSpectrumFilter in adams.data.multifilter
Subclasses of AbstractMultiSpectrumFilter in adams.data.multifilter Modifier and Type Class Description class
AbstractBinaryFormatsBasedMultiSpectrumFilter
Ancestor for formats-based filters that require exactly two spectra.class
AbstractFormatsBasedMultiSpectrumFilter
Ancestor for filters that require the user to specify the formats of the spectra to use for the filtering process.class
Add
Adds the amplitudes of first spectrum to the amplitudes of the second.class
Atan2
Computes the atan2, with the first format representing 'y' and the second format 'x'.class
Average
Averages spectra into a single one.class
Divide
Divides the amplitudes of first spectrum with the amplitudes of the second.class
FilteredMultiSpectrumFilter
The pre-filters select the spectra from the incoming multi-spectrum and re-package them into a new multi-spectrum.class
Fusion
Fuses the sub-spectra specified by the format option, by placing them side-by-side using the format option as the order.class
Mean
Averages spectra into a single one.class
Median
Averages spectra into a single one using the median.class
Multiply
Multiplies the amplitudes of two spectra with each other.class
PickByIndex
Extracts the specified sub-spectrum.class
PickByReportValue
Extracts the first sub-spectrum that matches the condition for the field.class
Subtract
Subtracts the amplitudes of first spectrum with the amplitudes of the second.Fields in adams.data.multifilter declared as AbstractMultiSpectrumFilter Modifier and Type Field Description protected AbstractMultiSpectrumFilter
FilteredMultiSpectrumFilter. m_BaseFilter
the base filter.protected AbstractMultiSpectrumFilter[]
FilteredMultiSpectrumFilter. m_PreFilters
the "pre" filters.Methods in adams.data.multifilter that return AbstractMultiSpectrumFilter Modifier and Type Method Description static AbstractMultiSpectrumFilter
AbstractMultiSpectrumFilter. forCommandLine(String cmdline)
Instantiates the filter from the given commandline (i.e., classname and optional options).static AbstractMultiSpectrumFilter
AbstractMultiSpectrumFilter. forName(String classname, String[] options)
Instantiates the filter with the given options.AbstractMultiSpectrumFilter
FilteredMultiSpectrumFilter. getBaseFilter()
Returns the base filter.AbstractMultiSpectrumFilter[]
FilteredMultiSpectrumFilter. getPreFilters()
Returns the pre-filters.AbstractMultiSpectrumFilter
AbstractMultiSpectrumFilter. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.AbstractMultiSpectrumFilter
AbstractMultiSpectrumFilter. shallowCopy(boolean expand)
Returns a shallow copy of itself, i.e., based on the commandline options.Methods in adams.data.multifilter with parameters of type AbstractMultiSpectrumFilter Modifier and Type Method Description void
FilteredMultiSpectrumFilter. setBaseFilter(AbstractMultiSpectrumFilter value)
Sets the base filter.void
FilteredMultiSpectrumFilter. setPreFilters(AbstractMultiSpectrumFilter[] value)
Sets the pre-filters. -
Uses of AbstractMultiSpectrumFilter in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractMultiSpectrumFilter Modifier and Type Field Description protected AbstractMultiSpectrumFilter
MultiSpectrumFilter. m_Filter
the filter to apply.protected AbstractMultiSpectrumFilter
MultiSpectrumOutlierDetector. m_Filter
the filter to apply for extracting the spectrum to apply the outlier detector to.Methods in adams.flow.transformer that return AbstractMultiSpectrumFilter Modifier and Type Method Description AbstractMultiSpectrumFilter
MultiSpectrumFilter. getFilter()
Returns the filter in use.AbstractMultiSpectrumFilter
MultiSpectrumOutlierDetector. getFilter()
Returns the filter in use.Methods in adams.flow.transformer with parameters of type AbstractMultiSpectrumFilter Modifier and Type Method Description void
MultiSpectrumFilter. setFilter(AbstractMultiSpectrumFilter value)
Sets the filter to use.void
MultiSpectrumOutlierDetector. setFilter(AbstractMultiSpectrumFilter value)
Sets the filter to use.
-