Skip to content

Commit

Permalink
Fix decon (#262)
Browse files Browse the repository at this point in the history
* Ordinal

* noice

* Aaha

* fix

* Bugfix

* noice
  • Loading branch information
stefanks authored Oct 17, 2017
1 parent 1da634c commit d56af59
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 188 deletions.
4 changes: 1 addition & 3 deletions MassSpectrometry/MzSpectra/IsotopicEnvelope.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,19 @@ public class IsotopicEnvelope
public readonly double totalIntensity;
public readonly double stDev;
public readonly int massIndex;
public readonly int bestJ;

#endregion Public Fields

#region Public Constructors

public IsotopicEnvelope(List<(double, double)> bestListOfPeaks, double bestMonoisotopicMass, int bestChargeState, double bestTotalIntensity, double bestStDev, int bestMassIndex, int bestJ)
public IsotopicEnvelope(List<(double, double)> bestListOfPeaks, double bestMonoisotopicMass, int bestChargeState, double bestTotalIntensity, double bestStDev, int bestMassIndex)
{
this.peaks = bestListOfPeaks;
this.monoisotopicMass = bestMonoisotopicMass;
this.charge = bestChargeState;
this.totalIntensity = bestTotalIntensity;
this.stDev = bestStDev;
this.massIndex = bestMassIndex;
this.bestJ = bestJ;
}

#endregion Public Constructors
Expand Down
Loading

0 comments on commit d56af59

Please sign in to comment.