コード例 #1
0
 public ChromCollector(int statusId, bool hasTimes, bool hasMassErrors)
 {
     StatusId    = statusId;
     Intensities = new BlockedList <float>();
     if (hasTimes)
     {
         Times = new SortedBlockedList <float>();
     }
     if (hasMassErrors)
     {
         MassErrors = new BlockedList <float>();
     }
 }
コード例 #2
0
 /// <summary>
 /// Set optional list of scans.
 /// </summary>
 public void SetScans(BlockedList <int> scans)
 {
     Scans = scans;
 }