Matrix Science Mascot Parser toolkit
 
Loading...
Searching...
No Matches
ms_ms1quant_average_results.hpp
1/*
2##############################################################################
3# file: ms_ms1quant_average_results.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_ms1quant_average_results.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_MS1QUANT_AVERAGE_RESULTS_HPP
18#define MS_MS1QUANT_AVERAGE_RESULTS_HPP
19
20
21// Includes from the standard template library
22#include <string>
23
24namespace matrix_science
25{
26 //=========================================================================
32 class ms_ms1quant_average_results_body;
33
35
40 class MS_MASCOTRESFILE_API ms_ms1quant_average_results :
41 public ms_handle
42 {
43 public:
44
47
48#ifndef SWIG
49 ms_ms1quant_average_results_body * body();
50 const ms_ms1quant_average_results_body * body() const;
51#endif
52
54 ms_ms1quant_average_results(const ms_ms1quant_average_results_body & body);
55
57 int getReferenceHitId() const;
59 int getReferenceMemberNumber() const;
61 int isReferenceUserSelected() const;
62 };
63 // end of quantitation_group
65 //=========================================================================
66
67} // namespace matrix_science
68
69#endif // MS_MS1QUANT_AVERAGE_RESULTS_HPP
70
71/*------------------------------- End of File -------------------------------*/
Results specific to an 'average' type quantitation method.
Definition: ms_ms1quant_average_results.hpp:42