CMS 3D CMS Logo

DeepMETHelper.cc
Go to the documentation of this file.
2 
3 namespace deepmet_helper {
4  float scale_and_rm_outlier(float val, float scale) {
5  float ret_val = val * scale;
6  if (ret_val > 1e6 || ret_val < -1e6)
7  return 0.;
8  return ret_val;
9  }
10 
11 } // namespace deepmet_helper
float scale_and_rm_outlier(float val, float scale)
Definition: DeepMETHelper.cc:4