Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Bielow <chris.bielow@fu-berlin.de>
  • Loading branch information
jcharkow and cbielow authored Jul 25, 2023
1 parent 914654c commit 779fbbe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/openms/include/OpenMS/ANALYSIS/OPENSWATH/DIAHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace OpenMS
class TheoreticalSpectrumGenerator;
namespace DIAHelpers
{
using SpectrumSequence = std::vector<OpenSwath::SpectrumPtr>; // a vector of spectrum pointers that DIA scores can operate on, allows for clever integration of only the target region
using SpectrumSequence = std::vector<OpenSwath::SpectrumPtr>; ///< a vector of spectrum pointers that DIA scores can operate on, allows for clever integration of only the target region

/**
@brief Helper functions for the DIA scoring of OpenSWATH
Expand All @@ -56,7 +56,7 @@ namespace OpenMS
@brief Integrate intensity in a spectrum from in @p mz_range (and @p im_range if defined)
returning the intensity-weighted m/z and im values as well as the total intensity.
@note If there is no signal, mz and im will be set to -1 and intensity to 0
@note If there is no signal, @p mz and @p im will be set to -1 and intensity to 0
@return Returns true if a signal was found (and false if no signal was found)
*/
Expand All @@ -67,7 +67,7 @@ namespace OpenMS
@brief Integrate intensity in SpectrumSequence in range @p mz_range (and @p im_range if defined)
returning the intensity-weighted m/z and im values as well as the total intensity.
@note If there is no signal, mz and im will be set to -1 and intensity to 0
@note If there is no signal, @p mz and @p im will be set to -1 and intensity to 0
@return Returns true if a signal was found (and false if no signal was found)
*/
OPENMS_DLLAPI bool integrateWindow(const SpectrumSequence& spectrum,
Expand Down

0 comments on commit 779fbbe

Please sign in to comment.