23 class PeptideIdentification;
94 void setRT(
double rt);
101 void setMZ(
double mz);
118 double getSignificanceThreshold() const;
120 void setSignificanceThreshold(
double value);
128 bool isHigherScoreBetter() const;
130 void setHigherScoreBetter(
bool value);
140 void setBaseName(const
String& base_name);
145 void setExperimentLabel(const
String& type);
154 void setSpectrumReference(const
String& ref);
207 bool higher_score_better_;
235 struct hash<
OpenMS::PeptideIdentification>
240 std::size_t seed = std::hash<OpenMS::MetaInfoInterface>{}(pi);
246 for (
const auto& hit : pi.getHits())
A container for consensus elements.
Definition ConsensusMap.h:68
Definition MzIdentMLHandler.h:135
Represents a single spectrum match (candidate) for a specific tandem mass spectrum (MS/MS).
Definition PeptideHit.h:52
Represents the set of candidates (SpectrumMatches) identified for a single precursor spectrum.
Definition PeptideIdentification.h:64
PeptideHit HitType
Hit type definition.
Definition PeptideIdentification.h:68
PeptideIdentification()
default constructor
virtual ~PeptideIdentification() noexcept
destructor
A more convenient string class.
Definition String.h:34
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition Types.h:97
std::vector< String > StringList
Vector of String.
Definition ListUtils.h:44
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
std::size_t hash_int(T value) noexcept
Hash for an integer type.
Definition HashUtils.h:107
void hash_combine(std::size_t &seed, std::size_t value) noexcept
Combine a hash value with additional data using golden ratio mixing.
Definition HashUtils.h:87
std::size_t hash_float(T value) noexcept
Hash for a floating point type (float or double).
Definition HashUtils.h:142
std::size_t fnv1a_hash_string(const std::string &s) noexcept
FNV-1a hash for a string.
Definition HashUtils.h:70
std::size_t operator()(const OpenMS::PeptideIdentification &pi) const noexcept
Definition PeptideIdentification.h:237