Skip to content

Commit

Permalink
code formatting for deep_helpers.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
wpmccormack committed May 18, 2022
1 parent 2ea1484 commit 60e20a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RecoBTag/FeatureTools/src/deep_helpers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ namespace btagbtvdeep {
double upper_bound = var_pset.at("upper_bound");
double pad = var_pset.contains("pad") ? double(var_pset.at("pad")) : 0;
prep_params.var_info_map[var_name] =
PreprocessParams::VarInfo(median, norm_factor, replace_inf_value, lower_bound, upper_bound, pad);
PreprocessParams::VarInfo(median, norm_factor, replace_inf_value, lower_bound, upper_bound, pad);
}

if (doExtra && data_ != nullptr) {
Expand Down Expand Up @@ -258,7 +258,7 @@ namespace btagbtvdeep {
double lower_bound = var_pset.getParameter<double>("lower_bound");
double upper_bound = var_pset.getParameter<double>("upper_bound");
prep_params.var_info_map[var_name] =
PreprocessParams::VarInfo(median, norm_factor, replace_inf_value, lower_bound, upper_bound, 0);
PreprocessParams::VarInfo(median, norm_factor, replace_inf_value, lower_bound, upper_bound, 0);
}

if (doExtra && data_ != nullptr) {
Expand Down

0 comments on commit 60e20a1

Please sign in to comment.