ProteoWizard
Public Member Functions
DefaultArrayLengthSorter Struct Reference
Inheritance diagram for DefaultArrayLengthSorter:
pwiz::analysis::SpectrumList_Sorter::Predicate

List of all members.

Public Member Functions

virtual tribool less (const SpectrumIdentity &lhs, const SpectrumIdentity &rhs) const
 return values: true: lhs < rhs false: lhs >= rhs indeterminate: need to see the full Spectrum object to decide
virtual tribool less (const Spectrum &lhs, const Spectrum &rhs) const
 return values: true: lhs < rhs false: lhs >= rhs indeterminate: need a more detailed Spectrum object to decide
- Public Member Functions inherited from pwiz::analysis::SpectrumList_Sorter::Predicate
virtual ~Predicate ()

Detailed Description

Definition at line 42 of file SpectrumList_SorterTest.cpp.


Member Function Documentation

virtual tribool DefaultArrayLengthSorter::less ( const SpectrumIdentity lhs,
const SpectrumIdentity rhs 
) const
inlinevirtual

return values: true: lhs < rhs false: lhs >= rhs indeterminate: need to see the full Spectrum object to decide

Reimplemented from pwiz::analysis::SpectrumList_Sorter::Predicate.

Definition at line 44 of file SpectrumList_SorterTest.cpp.

{
return boost::logic::indeterminate;
}
virtual tribool DefaultArrayLengthSorter::less ( const Spectrum lhs,
const Spectrum rhs 
) const
inlinevirtual

return values: true: lhs < rhs false: lhs >= rhs indeterminate: need a more detailed Spectrum object to decide

Reimplemented from pwiz::analysis::SpectrumList_Sorter::Predicate.

Definition at line 50 of file SpectrumList_SorterTest.cpp.

References pwiz::msdata::Spectrum::defaultArrayLength, and pwiz::msdata::SpectrumIdentity::id.

{
if (lhs.id.empty())
return boost::logic::indeterminate;
}

The documentation for this struct was generated from the following file: