public void GetSampleCollections()
 {
     this.CurrentSampleCollection = SampleCollection.GetSampleCollection(
         this.Name, this.LastObservedSession, this.SampleCollections);
     if (this.TrackMAD)
     {
         this.CurrentMADSampleCollection = SampleCollection.GetSampleCollection(
             $"{this.Name}_MAD", this.LastObservedSession, this.SampleCollections);
     }
     if (this.TrackOutliers)
     {
         this.CurrentOutlierSampleCollection = SampleCollection.GetSampleCollection(
             $"{this.Name}_Outliers", this.LastObservedSession, this.SampleCollections, samplesize: this.OutlierTrackingInterval, Fake: true);
     }
 }