using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using Misc; using System.Xml; using System.ComponentModel; using System.Collections.ObjectModel; namespace FLY.Thick.Base.Common { public class CurveCell : Misc.ISaveToXml, INotifyPropertyChanged { static CurveCell() { Misc.SaveToXmlHepler.Regist(typeof(CurveCell)); } public override string ToString() { return "value=" + Value.ToString() + " ad=" + AD.ToString() + " revisedad=" + RevisedAD.ToString(); } /// /// 面密度 /// public int Value { get; set; } public int AD { get; set; } /// /// 校正后的AD值 /// public int RevisedAD { get; set; } #region ISaveToXml 成员 public string[] GetSavePropertyNames() { return new string[]{ "Value", "AD"}; } #endregion #region INotifyPropertyChanged 成员 public event PropertyChangedEventHandler PropertyChanged; #endregion } public enum AD2ValueFlag { /// /// 修正后的曲线 /// Revised, /// /// 原始曲线 /// NoRevised } /// /// 曲线类型 /// public enum CurveType { /// /// 自然对数 /// E, /// /// 直线拟合 /// Line, /// /// 二次拟合 /// X2 } public enum CurveCorrectWay { /// /// 单点校正时,比例放大 /// OnePointIsScale, /// /// 单点校正时,平移 /// OnePointIsOffset } }