public PeakList <T> Process(PeakList <T> t)
 {
     t.KeepTopXInWindow(topX, 100);
     return(t);
 }