OpenMS
2.4.0
|
Transforming consumer of MS data. More...
#include <OpenMS/FORMAT/DATAACCESS/MSDataTransformingConsumer.h>
Public Member Functions | |
MSDataTransformingConsumer () | |
Constructor. More... | |
~MSDataTransformingConsumer () override | |
Default destructor. More... | |
void | setExpectedSize (Size, Size) override |
Set expected size of spectra and chromatograms to be consumed. More... | |
void | consumeSpectrum (SpectrumType &s) override |
Consume a spectrum. More... | |
virtual void | setSpectraProcessingPtr (void(*sproptr)(SpectrumType &)) |
void | consumeChromatogram (ChromatogramType &c) override |
Consume a chromatogram. More... | |
virtual void | setChromatogramProcessingPtr (void(*cproptr)(ChromatogramType &)) |
void | setExperimentalSettings (const OpenMS::ExperimentalSettings &) override |
Set experimental settings (meta-data) of the data to be consumed. More... | |
Public Member Functions inherited from IMSDataConsumer | |
virtual | ~IMSDataConsumer () |
Protected Attributes | |
void(* | sprocessing_ptr_ )(SpectrumType &) |
void(* | cprocessing_ptr_ )(ChromatogramType &) |
Additional Inherited Members | |
Public Types inherited from IMSDataConsumer | |
typedef MSSpectrum | SpectrumType |
typedef MSChromatogram | ChromatogramType |
Transforming consumer of MS data.
Is able to transform a spectra on the fly while it is read using a function pointer that can be set on the object.
Note that the spectrum gets transformed in-place.
|
inline |
Constructor.
References OpenMS::FunctionChromatogramNOP(), and OpenMS::FunctionSpectrumNOP().
|
inlineoverride |
Default destructor.
|
inlineoverridevirtual |
Consume a chromatogram.
The chromatogram will be consumed by the implementation and possibly modified.
s | The chromatogram to be consumed |
Implements IMSDataConsumer.
References OpenMS::Constants::c.
|
inlineoverridevirtual |
Consume a spectrum.
The spectrum will be consumed by the implementation and possibly modified.
s | The spectrum to be consumed |
Implements IMSDataConsumer.
|
inlinevirtual |
Set expected size of spectra and chromatograms to be consumed.
Some implementations might care about the number of spectra and chromatograms to be consumed and need to be informed about this (usually before consuming starts).
expectedSpectra | Number of spectra expected |
expectedChromatograms | Number of chromatograms expected |
Implements IMSDataConsumer.
|
inlineoverridevirtual |
Set experimental settings (meta-data) of the data to be consumed.
Some implementations might need to know about the meta-data (or the context) of the spectra and chromatograms to be consumed. This method allows them learn this.
exp | Experimental settings meta data for the data to be consumed |
Implements IMSDataConsumer.
|
inlinevirtual |
|
protected |
|
protected |