public override bool Equals(object obj) { if (object.ReferenceEquals(this, obj)) { return(true); } SpectrumReference other = obj as SpectrumReference; if (other == null) { return(false); } if (IsExternal) { return(spectrumID.Equals(other.spectrumID) && sourceFileID.Equals(other.sourceFileID)); } else { return(spectrumID.Equals(other.spectrumID)); } }
public Scan(SpectrumReference spectrumReference) { this.spectrumReference = spectrumReference; }
public Precursor(SpectrumReference spectrumReference) { this.spectrumReference = spectrumReference; }