Skip to content
Snippets Groups Projects
Commit d56f5c62 authored by Jihee Kim's avatar Jihee Kim
Browse files

Apply suggestion to calorimeters/simple_checking.cxx

parent 0f6b01c5
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ std::cout << "testing 3\n";
std::cout << "testing 4\n";
auto h0 = d1.Histo1D(TH1D("h0", "nhits; ", 20, 0,20), "nhits");
auto n0 = d1.Count();
auto n0 = d1.Filter([](int n){ return (n>=0); },{"nhits"}).Count();
TCanvas* c = new TCanvas();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment