// Copyright 2015-2017 Hans Dembinski // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt // or copy at http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include #include #include #include #include #include std::unique_ptr random_array(unsigned n, int type) { std::unique_ptr r(new double[n]); std::default_random_engine gen(1); if (type) { // type == 1 std::normal_distribution<> d(0.5, 0.3); for (unsigned i = 0; i < n; ++i) r[i] = d(gen); } else { // type == 0 std::uniform_real_distribution<> d(0.0, 1.0); for (unsigned i = 0; i < n; ++i) r[i] = d(gen); } return r; } void compare_1d(unsigned n, int distrib) { auto r = random_array(n, distrib); double best_root = std::numeric_limits::max(); for (unsigned k = 0; k < 20; ++k) { TH1I hroot("", "", 100, 0, 1); auto t = clock(); for (unsigned i = 0; i < n; ++i) hroot.Fill(r[i]); t = clock() - t; best_root = std::min(best_root, double(t) / CLOCKS_PER_SEC); } printf("root %.3f\n", best_root); } void compare_2d(unsigned n, int distrib) { auto r = random_array(n, distrib); double best_root = std::numeric_limits::max(); for (unsigned k = 0; k < 20; ++k) { TH2I hroot("", "", 100, 0, 1, 100, 0, 1); auto t = clock(); for (unsigned i = 0; i < n / 2; ++i) hroot.Fill(r[2 * i], r[2 * i + 1]); t = clock() - t; best_root = std::min(best_root, double(t) / CLOCKS_PER_SEC); } printf("root %.3f\n", best_root); } void compare_3d(unsigned n, int distrib) { auto r = random_array(n, distrib); double best_root = std::numeric_limits::max(); for (unsigned k = 0; k < 20; ++k) { TH3I hroot("", "", 100, 0, 1, 100, 0, 1, 100, 0, 1); auto t = clock(); for (unsigned i = 0; i < n / 3; ++i) hroot.Fill(r[3 * i], r[3 * i + 1], r[3 * i + 2]); t = clock() - t; best_root = std::min(best_root, double(t) / CLOCKS_PER_SEC); } printf("root %.3f\n", best_root); } void compare_6d(unsigned n, int distrib) { auto r = random_array(n, distrib); double best_root = std::numeric_limits::max(); for (unsigned k = 0; k < 20; ++k) { std::vector bin(6, 10); std::vector min(6, 0); std::vector max(6, 1); THnI hroot("", "", 6, &bin.front(), &min.front(), &max.front()); auto t = clock(); for (unsigned i = 0; i < n / 6; ++i) { hroot.Fill(r.get() + 6 * i); } t = clock() - t; best_root = std::min(best_root, double(t) / CLOCKS_PER_SEC); } printf("root %.3f\n", best_root); } int main(int argc, char** argv) { constexpr unsigned nfill = 6000000; printf("1D\n"); printf("uniform distribution\n"); compare_1d(nfill, 0); printf("normal distribution\n"); compare_1d(nfill, 1); printf("2D\n"); printf("uniform distribution\n"); compare_2d(nfill, 0); printf("normal distribution\n"); compare_2d(nfill, 1); printf("3D\n"); printf("uniform distribution\n"); compare_3d(nfill, 0); printf("normal distribution\n"); compare_3d(nfill, 1); printf("6D\n"); printf("uniform distribution\n"); compare_6d(nfill, 0); printf("normal distribution\n"); compare_6d(nfill, 1); }