Matrix Science Mascot Parser toolkit
 
Loading...
Searching...
No Matches
ms_quant_replicate.hpp
1/*
2##############################################################################
3# file: ms_quant_replicate.hpp #
4# 'msparser' toolkit #
5# Encapsulates replicate-element from "quantitation.xml"-file #
6##############################################################################
7# COPYRIGHT NOTICE #
8# Copyright 1998-2006 Matrix Science Limited All Rights Reserved. #
9# #
10##############################################################################
11 * @(#)$Source: parser/inc/ms_quant_replicate.hpp $
12 * @(#)$Revision: 1caf47bbc80949a038f104b65af87b0f2a38e4a7 | MSPARSER_REL_3_0_0-2024-09-24-0-g93ebaeb4f4 $
13 * @(#)$Date: 2024-04-20 10:59:36 +0100 $
14##############################################################################
15 */
16
17#ifndef MS_QUANT_REPLICATE_HPP
18#define MS_QUANT_REPLICATE_HPP
19
20
21// forward declarations
22namespace msparser_internal {
23 class ms_quant_xmlloader;
24}
25
26namespace matrix_science {
27
28 class ms_xml_schema; // forward declaration
29
36
39 class MS_MASCOTRESFILE_API ms_quant_replicate: public ms_quant_parameters
40 {
41 friend class msparser_internal::ms_quant_xmlloader;
42 public:
45
48
50 virtual ~ms_quant_replicate();
51
53 void defaultValues();
54
56 void copyFrom(const ms_quant_replicate* right);
57
58#ifndef SWIG
60 ms_quant_replicate& operator=(const ms_quant_replicate& right);
61#endif
63 virtual std::string getSchemaType() const;
64
66 virtual std::string validateShallow(const ms_xml_schema *pSchemaFileObj) const;
67
69 virtual std::string validateDeep(const ms_xml_schema *pSchemaFileObj) const;
70
72 bool haveTimeAlignmentAlgorithm() const;
73
75 std::string getTimeAlignmentAlgorithm() const;
76
78 void setTimeAlignmentAlgorithm(const char* value);
79
81 void dropTimeAlignmentAlgorithm();
82
84 std::string getTimeAlignmentAlgorithmSchemaType() const;
85
86
87
88 private:
89 std::string _time_alignment_algorithm;
90 bool _time_alignment_algorithm_set;
91
92
93 }; // class ms_quant_replicate
94 // end of config_group
96
97} // namespace matrix_science
98
99#endif // MS_QUANT_REPLICATE_HPP
100
101/*------------------------------- End of File -------------------------------*/
A class that represents base parametersType in quantitation.xml.
Definition: ms_quant_parameters.hpp:82
An object of this class represent a single replicate element in quantitation.xml.
Definition: ms_quant_replicate.hpp:40