Skip to content

Commit 29e1890

Browse files
author
Cristian Lussana
committed
work in progress
1 parent 70caf7a commit 29e1890

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/api/oi_ensi_lr.cpp

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ template void print_matrix< ::mattype>(::mattype matrix);
3131
template void print_matrix< ::cxtype>(::cxtype matrix);
3232

3333
vec3 gridpp::optimal_interpolation_ensi_lr(const gridpp::Grid& bgrid,
34-
const vec3& background_l, // left background: field to update
35-
const vec3& background_L, // LEFT background: field used for dynamical correlations
34+
const vec3& background_l,
35+
const vec3& background_L,
3636
const gridpp::Points& points,
3737
const vec2& pobs,
38-
const vec2& pbackground_r, // right background: new information at observations points
39-
const vec2& pbackground_R, // RIGHT background: information at obs points for dynamical correlations
38+
const vec2& pbackground_r,
39+
const vec2& pbackground_R,
4040
const gridpp::StructureFunction& structure,
41-
float var_ratios_or, // eps2
42-
float std_ratios_lr, // gamma
43-
float weigth, // beta
41+
float var_ratios_or,
42+
float std_ratios_lr,
43+
float weigth,
4444
int max_points,
4545
bool allow_extrapolation) {
4646
double s_time = gridpp::clock();
@@ -122,16 +122,16 @@ vec3 gridpp::optimal_interpolation_ensi_lr(const gridpp::Grid& bgrid,
122122
return output;
123123
}
124124
vec2 gridpp::optimal_interpolation_ensi_lr(const gridpp::Points& bpoints,
125-
const vec2& background_l, // left background: field to update
126-
const vec2& background_L, // LEFT background: field used for dynamical correlations
125+
const vec2& background_l,
126+
const vec2& background_L,
127127
const gridpp::Points& points,
128-
const vec& pobs, // gObs
129-
const vec2& pbackground_r, // right background: new information at observations points
130-
const vec2& pbackground_R, // RIGHT background: information at obs points for dynamical correlations
128+
const vec2& pobs,
129+
const vec2& pbackground_r,
130+
const vec2& pbackground_R,
131131
const gridpp::StructureFunction& structure,
132-
float var_ratios_or, // eps2
133-
float std_ratios_lr, // gamma
134-
float weigth, // beta
132+
float var_ratios_or,
133+
float std_ratios_lr,
134+
float weigth,
135135
int max_points,
136136
bool allow_extrapolation) {
137137
if(max_points < 0)

0 commit comments

Comments
 (0)