Exemplo n.º 1
0
 public void AddMom(DateTime time, double r, MomErr err = null)
 {
     BufMom.Real = r;
     AddTimeErrorMean(time, err);
 }
Exemplo n.º 2
0
 public void AddMom(DateTime time, DateTime d, MomErr err = null)
 {
     BufMom.Date = d;
     AddTimeErrorMean(time, err);
 }
Exemplo n.º 3
0
 public void AddMom(DateTime time, int i, MomErr err = null)
 {
     BufMom.Integer = i;
     AddTimeErrorMean(time, err);
 }
Exemplo n.º 4
0
 public void AddMom(DateTime time, bool b, MomErr err = null)
 {
     BufMom.Boolean = b;
     AddTimeErrorMean(time, err);
 }
Exemplo n.º 5
0
 public void AddMom(DateTime time, IReadMean mean, MomErr err)
 {
     BufMom.CopyValueFrom(mean);
     AddTimeErrorMean(time, err);
 }
Exemplo n.º 6
0
 public void AddMom(IReadMean mom, MomErr err)
 {
     BufMom.CopyValueFrom(mom);
     AddTimeErrorMean(mom.Time, err);
 }
Exemplo n.º 7
0
 private void AddMomToEnd(DateTime time, MomErr err)
 {
     _times.Add(time);
     AddError(err, Count - 1);
     AddBufMomEnd();
 }