protected override void computeData(BackgroundWorker bw)
        {
            if (this.getResults() == null) return;

            this.tickTotal = this.getAllMethods().Count;

            data = new List<DETData>();
            foreach (Method e in this.getAllMethods()) {
                DETData dd = new DETData(e.statistics);
                dd.initThreshes();
                dd.computeData(this);
                data.Add(dd);
            }
        }
示例#2
0
        protected override void computeData(BackgroundWorker bw)
        {
            if (this.getResults() == null)
            {
                return;
            }

            this.tickTotal = this.getAllMethods().Count;

            data = new List <DETData>();
            foreach (Method e in this.getAllMethods())
            {
                DETData dd = new DETData(e.statistics);
                dd.initThreshes();
                dd.computeData(this);
                data.Add(dd);
            }
        }