Example #1
0
 public void CombinePoints(ChromatographicPeak otherPoint)
 {
     if (!Time.Equals(otherPoint.Time))
     {
         throw new ArgumentException("The two chromatogram points don't have the same time");
     }
     Intensity += otherPoint.Intensity;
 }
Example #2
0
 public int CompareTo(ChromatographicPeak other)
 {
     return Time.CompareTo(other.Time);
 }
Example #3
0
 public int CompareTo(ChromatographicPeak other)
 {
     return(Time.CompareTo(other.Time));
 }