|
| | ChromatogramSettings () |
| | Constructor.
|
| |
| | ChromatogramSettings (const ChromatogramSettings &)=default |
| | Copy constructor.
|
| |
| | ChromatogramSettings (ChromatogramSettings &&)=default |
| | Move constructor.
|
| |
| virtual | ~ChromatogramSettings () |
| | Destructor.
|
| |
| ChromatogramSettings & | operator= (const ChromatogramSettings &)=default |
| |
| ChromatogramSettings & | operator= (ChromatogramSettings &&) &=default |
| | Move assignment operator.
|
| |
| bool | operator== (const ChromatogramSettings &rhs) const |
| | Equality operator.
|
| |
| bool | operator!= (const ChromatogramSettings &rhs) const |
| | Equality operator.
|
| |
| const String & | getNativeID () const |
| | returns the native identifier for the spectrum, used by the acquisition software.
|
| |
| void | setNativeID (const String &native_id) |
| | sets the native identifier for the spectrum, used by the acquisition software.
|
| |
| const String & | getComment () const |
| | returns the free-text comment
|
| |
| void | setComment (const String &comment) |
| | sets the free-text comment
|
| |
| const InstrumentSettings & | getInstrumentSettings () const |
| | returns a const reference to the instrument settings of the current spectrum
|
| |
| InstrumentSettings & | getInstrumentSettings () |
| | returns a mutable reference to the instrument settings of the current spectrum
|
| |
| void | setInstrumentSettings (const InstrumentSettings &instrument_settings) |
| | sets the instrument settings of the current spectrum
|
| |
| const AcquisitionInfo & | getAcquisitionInfo () const |
| | returns a const reference to the acquisition info
|
| |
| AcquisitionInfo & | getAcquisitionInfo () |
| | returns a mutable reference to the acquisition info
|
| |
| void | setAcquisitionInfo (const AcquisitionInfo &acquisition_info) |
| | sets the acquisition info
|
| |
| const SourceFile & | getSourceFile () const |
| | returns a const reference to the source file
|
| |
| SourceFile & | getSourceFile () |
| | returns a mutable reference to the source file
|
| |
| void | setSourceFile (const SourceFile &source_file) |
| | sets the source file
|
| |
| const Precursor & | getPrecursor () const |
| | returns a const reference to the precursors
|
| |
| Precursor & | getPrecursor () |
| | returns a mutable reference to the precursors
|
| |
| void | setPrecursor (const Precursor &precursor) |
| | sets the precursors
|
| |
| const Product & | getProduct () const |
| | returns a const reference to the products
|
| |
| Product & | getProduct () |
| | returns a mutable reference to the products
|
| |
| void | setProduct (const Product &product) |
| | sets the products
|
| |
| ChromatogramType | getChromatogramType () const |
| | returns the chromatogram type, e.g. a SRM chromatogram
|
| |
| void | setChromatogramType (ChromatogramType type) |
| | sets the chromatogram type
|
| |
| void | setDataProcessing (const std::vector< DataProcessingPtr > &data_processing) |
| | sets the description of the applied processing
|
| |
| std::vector< DataProcessingPtr > & | getDataProcessing () |
| | returns a mutable reference to the description of the applied processing
|
| |
| const std::vector< std::shared_ptr< const DataProcessing > > | getDataProcessing () const |
| | returns a const reference to the description of the applied processing
|
| |
| | MetaInfoInterface ()=default |
| | Constructor.
|
| |
| | MetaInfoInterface (const MetaInfoInterface &rhs) |
| | Copy constructor.
|
| |
| | MetaInfoInterface (MetaInfoInterface &&) noexcept |
| | Move constructor.
|
| |
| | ~MetaInfoInterface () |
| | Destructor.
|
| |
| MetaInfoInterface & | operator= (const MetaInfoInterface &rhs) |
| | Assignment operator.
|
| |
| MetaInfoInterface & | operator= (MetaInfoInterface &&) noexcept |
| | Move assignment operator.
|
| |
| void | swap (MetaInfoInterface &rhs) |
| | Swap contents.
|
| |
| bool | operator== (const MetaInfoInterface &rhs) const |
| | Equality operator.
|
| |
| bool | operator!= (const MetaInfoInterface &rhs) const |
| | Equality operator.
|
| |
| const DataValue & | getMetaValue (const String &name) const |
| | Returns the value corresponding to a string, or DataValue::EMPTY if not found.
|
| |
| DataValue | getMetaValue (const String &name, const DataValue &default_value) const |
| | Returns the value corresponding to a string, or a default value (e.g.: DataValue::EMPTY) if not found
|
| |
| const DataValue & | getMetaValue (UInt index) const |
| | Returns the value corresponding to the index, or DataValue::EMPTY if not found.
|
| |
| DataValue | getMetaValue (UInt index, const DataValue &default_value) const |
| | Returns the value corresponding to the index, or a default value (e.g.: DataValue::EMPTY) if not found
|
| |
| bool | metaValueExists (const String &name) const |
| | Returns whether an entry with the given name exists.
|
| |
| bool | metaValueExists (UInt index) const |
| | Returns whether an entry with the given index exists.
|
| |
| void | setMetaValue (const String &name, const DataValue &value) |
| | Sets the DataValue corresponding to a name.
|
| |
| void | setMetaValue (UInt index, const DataValue &value) |
| | Sets the DataValue corresponding to an index.
|
| |
| void | removeMetaValue (const String &name) |
| | Removes the DataValue corresponding to name if it exists.
|
| |
| void | removeMetaValue (UInt index) |
| | Removes the DataValue corresponding to index if it exists.
|
| |
| void | addMetaValues (const MetaInfoInterface &from) |
| |
| void | getKeys (std::vector< String > &keys) const |
| | Fills the given vector with a list of all keys for which a value is set.
|
| |
| void | getKeys (std::vector< UInt > &keys) const |
| | Fills the given vector with a list of all keys for which a value is set.
|
| |
| bool | isMetaEmpty () const |
| | Returns if the MetaInfo is empty.
|
| |
| void | clearMetaInfo () |
| | Removes all meta values.
|
| |
Representation of chromatogram settings, e.g. SRM/MRM chromatograms.
It contains the metadata about chromatogram specific instrument settings, acquisition settings, description of the meta values used in the peaks and precursor info.