Skip to content

Commit

Permalink
Remove const
Browse files Browse the repository at this point in the history
  • Loading branch information
iarspider committed Jul 12, 2023
1 parent f30b94f commit 6de546c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RecoMET/METPUSubtraction/plugins/DeepMETProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ DeepMETProducer::DeepMETProducer(const edm::ParameterSet& cfg, const tensorflow:

// Workaround for missing constructor TensorShape::TensorShape(absl::Slice<long>),
// the constructor expects Slice<int64> or initializer_list<int64> and is marked explicit
const tensorflow::TensorShape shape;
tensorflow::TensorShape shape;
shape.AddDim(1);
shape.AddDim(max_n_pf_);
shape.AddDim(8);

const tensorflow::TensorShape cat_shape;
tensorflow::TensorShape cat_shape;
shape.AddDim(1);
shape.AddDim(max_n_pf_);
shape.AddDim(1);
Expand Down

0 comments on commit 6de546c

Please sign in to comment.