Matrix Science Mascot Parser toolkit
 
Loading...
Searching...
No Matches
ms_distiller_sub_project.hpp
1/*
2##############################################################################
3# file: ms_distiller_sub_project.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_sub_project.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_SUB_PROJECT_HPP
18#define MS_DISTILLER_SUB_PROJECT_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_sub_project
44 {
45 public:
47 static std::string getResultsListStreamName();
48
49 // used internally
51 virtual ~ms_distiller_sub_project() { }
52
53 bool extractXml(msparser_internal::ms_XMLHelper & helper, msparser_internal::ms_XMLElement & element);
54
56 virtual int getId() const;
58 virtual std::string getType() const;
60 virtual std::string getName() const;
62 virtual int getRawSampleNumber() const;
64 virtual int getRawFormat() const;
66 virtual std::string getRawAbsolutePath() const;
68 virtual std::string getRawRelativePath() const;
70 virtual std::string getProjectRelativePath() const;
72 virtual bool getHavePeakList() const;
73
74 private:
75 int id;
76 std::string type; // "project" or "raw"
77 std::string name;
78 int rawSampleNumber;
79 int rawFormat;
80 std::string rawAbsolutePath;
81 std::string rawRelativePath;
82 std::string projectRelativePath;
83 bool havePeakList;
84 };
85 // end of quantitation_group
87 //=========================================================================
88
89} // namespace matrix_science
90
91#endif // MS_DISTILLER_SUB_PROJECT_HPP
92
93/*------------------------------- End of File -------------------------------*/
The details of a Distiller multifile subproject.
Definition: ms_distiller_sub_project.hpp:44