Matrix Science Mascot Parser toolkit
 
Loading...
Searching...
No Matches
ms_distiller_data_quant.hpp
1/*
2##############################################################################
3# file: ms_distiller_data_quant.hpp
4# 'msparser' toolkit
5# An extracted ion chromatogram
6##############################################################################
7# COPYRIGHT NOTICE
8# Copyright 1998-2014 Matrix Science Limited All Rights Reserved.
9#
10##############################################################################
11 * @(#)$Source: parser/inc/ms_distiller_data_quant.hpp $
12 * @(#)$Revision: 1b450440f9c97e1e41d0fc6016a27d68951d4532 | MSPARSER_REL_3_0_0-2024-09-24-0-g93ebaeb4f4 $
13 * @(#)$Date: 2018-07-30 16:23:53 +0100 $
14##############################################################################
15 */
16
17#ifndef MS_DISTILLER_DATA_QUANT_HPP
18#define MS_DISTILLER_DATA_QUANT_HPP
19
20
21// Includes from the standard template library
22#include <string>
23
24
25namespace msparser_internal
26{
27 class ms_XMLHelper;
28 class ms_XMLElement;
29}
30
31namespace matrix_science
32{
33 //=========================================================================
39
43 class MS_MASCOTRESFILE_API ms_distiller_data_quant
44 {
45 public:
46
47 // used internally
49 ms_distiller_data_quant(const std::string & taskId, int streamNumber);
50 bool extractXml(msparser_internal::ms_XMLHelper & helper, msparser_internal::ms_XMLElement & element);
51
53 std::string getTaskId() const;
55 int getStreamNumber() const;
56
58 std::string getResultsStreamName() const;
60 std::string getCacheStreamName() const;
61
62 int getResultsStreamNumber() const;
63 int getCacheStreamNumber() const;
64
65 private:
66 std::string taskId_;
67 int streamNumber_;
68 };
69 // end of quantitation_group
71 //=========================================================================
72
73} // namespace matrix_science
74
75#endif // MS_DISTILLER_DATA_QUANT_HPP
76
77/*------------------------------- End of File -------------------------------*/
The details of a Distiller search.
Definition: ms_distiller_data_quant.hpp:44