示例#1
0
 /// <summary>
 /// In the case of small molecule transitions specified by mass only, position within
 /// the parent's list of transitions is the only meaningful key.  So we need to know our parent.
 /// </summary>
 public TransitionLossEquivalentKey(TransitionGroupDocNode parent, TransitionDocNode transition, TransitionLosses losses)
 {
     Key    = new TransitionEquivalentKey(parent, transition);
     Losses = losses;
 }
示例#2
0
 /// <summary>
 /// In the case of small molecule transitions specified by mass only, position within 
 /// the parent's list of transitions is the only meaningful key.  So we need to know our parent.
 /// </summary>
 public TransitionLossEquivalentKey(TransitionGroupDocNode parent, TransitionDocNode transition, TransitionLosses losses)
 {
     Key = new TransitionEquivalentKey(parent, transition);
     Losses = losses;
 }
示例#3
0
 private bool Equals(TransitionEquivalentKey other)
 {
     return(Equals(_customIonEquivalenceTestText, other._customIonEquivalenceTestText) &&
            Transition.Equivalent(_nodeTran, other._nodeTran));
 }
示例#4
0
 private bool Equals(TransitionEquivalentKey other)
 {
     return Equals(_customIonEquivalenceTestText, other._customIonEquivalenceTestText) &&
         Transition.Equivalent(_nodeTran, other._nodeTran);
 }