示例#1
0
 protected bool Equals(MsMsSearchUnit other)
 {
     return(Math.Abs(Mz - other.Mz) < 1e-9 && string.Equals(Description, other.Description));
 }
示例#2
0
 public MsMsSearchResult(MsMsSearchUnit msMsSearchUnit, Peak observedPeak)
 {
     TheoreticalPeak = msMsSearchUnit;
     ObservedPeak    = observedPeak;
 }