ProteoWizard
References.hpp
Go to the documentation of this file.
1//
2// $Id$
3//
4//
5// Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6//
7// Copyright 2009 Vanderbilt University - Nashville, TN 37232
8//
9// Licensed under the Apache License, Version 2.0 (the "License");
10// you may not use this file except in compliance with the License.
11// You may obtain a copy of the License at
12//
13// http://www.apache.org/licenses/LICENSE-2.0
14//
15// Unless required by applicable law or agreed to in writing, software
16// distributed under the License is distributed on an "AS IS" BASIS,
17// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18// See the License for the specific language governing permissions and
19// limitations under the License.
20//
21
22
23#ifndef _TRADATA_REFERENCES_HPP_
24#define _TRADATA_REFERENCES_HPP_
25
26
28#include "TraData.hpp"
29
30
31namespace pwiz {
32namespace tradata {
33
34
35/// functions for resolving references from objects into the internal MSData lists
36namespace References {
37
38
39PWIZ_API_DECL void resolve(RetentionTime& retentionTime, const TraData& td);
40PWIZ_API_DECL void resolve(Prediction& prediction, const TraData& td);
41PWIZ_API_DECL void resolve(Configuration& configuration, const TraData& td);
42PWIZ_API_DECL void resolve(Peptide& peptide, const TraData& td);
43PWIZ_API_DECL void resolve(Transition& transition, const TraData& td);
44PWIZ_API_DECL void resolve(Target& target, const TraData& td);
45
46
47/// Resolve internal references in a TraData object.
49
50
51} // namespace References
52
53
54} // namespace tradata
55} // namespace pwiz
56
57
58#endif // _TRADATA_REFERENCES_HPP_
59
#define PWIZ_API_DECL
Definition Export.hpp:32
represents a peptide or polypeptide (a sequence of amino acids)
Definition Peptide.hpp:62
PWIZ_API_DECL void resolve(RetentionTime &retentionTime, const TraData &td)
Instrument configuration used in the validation or optimization of the transitions.
Definition TraData.hpp:148
Information about a prediction for a suitable transition using some software.
Definition TraData.hpp:103
A peptide or compound that is to be included or excluded from a target list of precursor m/z values.
Definition TraData.hpp:309