Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages

IncludeExcludeTarget.h

Go to the documentation of this file.
00001 // --------------------------------------------------------------------------
00002 //                   OpenMS -- Open-Source Mass Spectrometry
00003 // --------------------------------------------------------------------------
00004 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
00005 // ETH Zurich, and Freie Universitaet Berlin 2002-2012.
00006 //
00007 // This software is released under a three-clause BSD license:
00008 //  * Redistributions of source code must retain the above copyright
00009 //    notice, this list of conditions and the following disclaimer.
00010 //  * Redistributions in binary form must reproduce the above copyright
00011 //    notice, this list of conditions and the following disclaimer in the
00012 //    documentation and/or other materials provided with the distribution.
00013 //  * Neither the name of any author or any participating institution
00014 //    may be used to endorse or promote products derived from this software
00015 //    without specific prior written permission.
00016 // For a full list of authors, refer to the file AUTHORS.
00017 // --------------------------------------------------------------------------
00018 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00019 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00020 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00021 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
00022 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00023 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00024 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
00025 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
00026 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
00027 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
00028 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00029 //
00030 // --------------------------------------------------------------------------
00031 // $Maintainer: Hannes Roest $
00032 // $Authors: Andreas Bertsch $
00033 // --------------------------------------------------------------------------
00034 
00035 #ifndef OPENMS_ANALYSIS_TARGETED_INCLUDEEXCLUDETARGET_H
00036 #define OPENMS_ANALYSIS_TARGETED_INCLUDEEXCLUDETARGET_H
00037 
00038 #include <OpenMS/KERNEL/StandardTypes.h>
00039 #include <OpenMS/METADATA/CVTermList.h>
00040 #include <OpenMS/ANALYSIS/TARGETED/TargetedExperimentHelper.h>
00041 
00042 #include <vector>
00043 
00044 namespace OpenMS
00045 {
00053   class OPENMS_DLLAPI IncludeExcludeTarget :
00054     public CVTermList
00055   {
00056 
00057 public:
00058 
00059     typedef TargetedExperimentHelper::Configuration Configuration;
00060     typedef TargetedExperimentHelper::RetentionTime RetentionTime;
00061 
00065 
00066     IncludeExcludeTarget();
00067 
00069     IncludeExcludeTarget(const IncludeExcludeTarget & rhs);
00070 
00072     virtual ~IncludeExcludeTarget();
00074 
00076     IncludeExcludeTarget & operator=(const IncludeExcludeTarget & rhs);
00077 
00081     void setName(const String & name);
00082 
00083     const String & getName() const;
00084 
00085     void setPeptideRef(const String & peptide_ref);
00086 
00087     const String & getPeptideRef() const;
00088 
00089     void setCompoundRef(const String & compound_ref);
00090 
00091     const String & getCompoundRef() const;
00092 
00094     void setPrecursorMZ(DoubleReal mz);
00095 
00096     DoubleReal getPrecursorMZ() const;
00097 
00098     void setPrecursorCVTermList(const CVTermList & list);
00099 
00100     void addPrecursorCVTerm(const CVTerm & cv_term);
00101 
00102     const CVTermList & getPrecursorCVTermList() const;
00103 
00104     void setProductMZ(DoubleReal mz);
00105 
00106     DoubleReal getProductMZ() const;
00107 
00108     void setProductCVTermList(const CVTermList & list);
00109 
00110     void addProductCVTerm(const CVTerm & cv_term);
00111 
00112     const CVTermList & getProductCVTermList() const;
00113 
00114     void setInterpretations(const std::vector<CVTermList> & interpretations);
00115 
00116     const std::vector<CVTermList> & getInterpretations() const;
00117 
00118     void addInterpretation(const CVTermList & interpretation);
00119 
00120     void setConfigurations(const std::vector<Configuration> & configuration);
00121 
00122     const std::vector<Configuration> & getConfigurations() const;
00123 
00124     void addConfiguration(const Configuration & configuration);
00125 
00126     void setPrediction(const CVTermList & prediction);
00127 
00128     void addPredictionTerm(const CVTerm & prediction);
00129 
00130     const CVTermList & getPrediction() const;
00131 
00132     void setRetentionTime(RetentionTime rt);
00133 
00134     const RetentionTime & getRetentionTime() const;
00136 
00140 
00141     bool operator==(const IncludeExcludeTarget & rhs) const;
00142 
00144     bool operator!=(const IncludeExcludeTarget & rhs) const;
00146 
00147 protected:
00148 
00149     void updateMembers_();
00150 
00151     String name_;
00152 
00153     DoubleReal precursor_mz_;
00154 
00155     CVTermList precursor_cv_terms_;
00156 
00157     DoubleReal product_mz_;
00158 
00159     CVTermList product_cv_terms_;
00160 
00161     std::vector<CVTermList> interpretation_list_;
00162 
00163     String peptide_ref_;
00164 
00165     String compound_ref_;
00166 
00167     std::vector<Configuration> configurations_;
00168 
00169     CVTermList prediction_;
00170 
00171     RetentionTime rts_;
00172 
00173   };
00174 }
00175 
00176 #endif // OPENMS_ANALYSIS_TARGETED_INCLUDEEXCLUDETARGET_H

OpenMS / TOPP release 1.10.0 Documentation generated on Thu Mar 7 2013 09:42:40 using doxygen 1.7.1