47 :
name(theName),
n(0), sum(0.), mean(0.), var(0.), sd(0.), r(0.), efficiency(0.),
48 r2eff(0.), r2int(0.), shift(0.), vov(0.), fom(0.), largest(0.),
49 largest_score_happened(0), mean_1(0.), var_1(0.), sd_1(0.), r_1(0.),
50 shift_1(0.), vov_1(0.), fom_1(0.), noBinOfHistory(16), slope(0.),
51 noBinOfPDF(10), minimizer(0), noPass(0), noTotal(8), statsAreUpdated(
true)
52 , showHistory(
true) , calcSLOPE(
true)
54 nonzero_histories.clear();
55 largest_scores.clear();
56 largest_scores.push_back( 0.0 );
58 history_grid.resize( noBinOfHistory , 0 );
59 mean_history.resize( noBinOfHistory , 0.0 );
60 var_history.resize( noBinOfHistory , 0.0 );
61 sd_history.resize( noBinOfHistory , 0.0 );
62 r_history.resize( noBinOfHistory , 0.0 );
63 vov_history.resize( noBinOfHistory , 0.0 );
64 fom_history.resize( noBinOfHistory , 0.0 );
65 shift_history.resize( noBinOfHistory , 0.0 );
66 e_history.resize( noBinOfHistory , 0.0 );
67 r2eff_history.resize( noBinOfHistory , 0.0 );
68 r2int_history.resize( noBinOfHistory , 0.0 );
73 cpu_time.push_back( 0.0 );