Exemplo n.º 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>();
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Set a shared reference to a list of Times that is allocated independently.
 /// </summary>
 public void SetTimes(SortedBlockedList <float> times)
 {
     Times = times;
 }