diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-08-03 10:21:38 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-08-03 10:21:38 +0300 |
| commit | f8a8dad9fec2eb57fccf063e25efbbbe5e0a1c1a (patch) | |
| tree | 573fdfe678572ace5aec40d287b2e55a6c440d71 /Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/TrialsLogModel.cs | |
| parent | 5b92222057eeee3233f1d3538ecf67c9189b9a60 (diff) | |
| download | Tango-f8a8dad9fec2eb57fccf063e25efbbbe5e0a1c1a.tar.gz Tango-f8a8dad9fec2eb57fccf063e25efbbbe5e0a1c1a.zip | |
Fine Tuning. Added vector calculation.
Lubricant added to Fine Tuning job.
Related Work Items: #6536, #7054
Diffstat (limited to 'Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/TrialsLogModel.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/TrialsLogModel.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/TrialsLogModel.cs b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/TrialsLogModel.cs index dd055f52f..3b16a65a2 100644 --- a/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/TrialsLogModel.cs +++ b/Software/Visual_Studio/PPC/Modules/Tango.PPC.JobsV2/Models/TrialsLogModel.cs @@ -57,7 +57,16 @@ namespace Tango.PPC.Jobs.Models get { return _b; } set { _b = value; RaisePropertyChanged(nameof(LAB)); OnLABChanged(); } } - + + [BsonIgnore] + public double SuggestionL { get; set; } + [BsonIgnore] + public double SuggestionA { get; set; } + [BsonIgnore] + public double SuggestionB { get; set; } + [BsonIgnore] + public bool HasSuggestionsLAB { get; set; } + public double C { get; set; } public double M { get; set; } public double Y { get; set; } @@ -186,6 +195,7 @@ namespace Tango.PPC.Jobs.Models IsTested = false; IsSelectionEnable = true; IsBest = false; + HasSuggestionsLAB = false; } #region Methods |
