Skip to content

Commit

Permalink
remove unneccessary overloads which are already provided by the basec…
Browse files Browse the repository at this point in the history
…lass
  • Loading branch information
cbielow committed Feb 14, 2024
1 parent 10ca09f commit c5a5fff
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 36 deletions.
12 changes: 0 additions & 12 deletions src/openms/include/OpenMS/KERNEL/MSExperiment.h
Original file line number Diff line number Diff line change
Expand Up @@ -502,18 +502,6 @@ namespace OpenMS
*/
void updateRanges(Int ms_level);

/// returns the minimal m/z value
CoordinateType getMinMZ() const;

/// returns the maximal m/z value
CoordinateType getMaxMZ() const;

/// returns the minimal retention time value
CoordinateType getMinRT() const;

/// returns the maximal retention time value
CoordinateType getMaxRT() const;

/// returns the total number of peaks
UInt64 getSize() const;

Expand Down
24 changes: 0 additions & 24 deletions src/openms/source/KERNEL/MSExperiment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,30 +305,6 @@ namespace OpenMS
}
}

/// returns the minimal m/z value
MSExperiment::CoordinateType MSExperiment::getMinMZ() const
{
return RangeManagerType::getMinMZ();
}

/// returns the maximal m/z value
MSExperiment::CoordinateType MSExperiment::getMaxMZ() const
{
return RangeManagerType::getMaxMZ();
}

/// returns the minimal retention time value
MSExperiment::CoordinateType MSExperiment::getMinRT() const
{
return RangeManagerType::getMinRT();
}

/// returns the maximal retention time value
MSExperiment::CoordinateType MSExperiment::getMaxRT() const
{
return RangeManagerType::getMaxRT();
}

/// returns the total number of peaks
UInt64 MSExperiment::getSize() const
{
Expand Down

0 comments on commit c5a5fff

Please sign in to comment.