Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-12 08:35:42

0001 /***********************************************************************************\
0002 * (c) Copyright 1998-2024 CERN for the benefit of the LHCb and ATLAS collaborations *
0003 *                                                                                   *
0004 * This software is distributed under the terms of the Apache version 2 licence,     *
0005 * copied verbatim in the file "LICENSE".                                            *
0006 *                                                                                   *
0007 * In applying this licence, CERN does not waive the privileges and immunities       *
0008 * granted to it by virtue of its status as an Intergovernmental Organization        *
0009 * or submit itself to any jurisdiction.                                             *
0010 \***********************************************************************************/
0011 #pragma once
0012 
0013 #include <Gaudi/Accumulators/AxisAsProperty.h>
0014 #include <Gaudi/Accumulators/HistogramWrapper.h>
0015 #include <Gaudi/Accumulators/StaticRootHistogram.h>
0016 
0017 namespace Gaudi::Accumulators {
0018 
0019   /// standard custom histogram
0020   template <unsigned int ND, atomicity Atomicity = atomicity::full, typename Arithmetic = double,
0021             typename AxisTupleType = make_tuple_t<Axis<Arithmetic>, ND>>
0022   using RootHistogram = HistogramWrapper<StaticRootHistogram<ND, Atomicity, Arithmetic, AxisTupleType>>;
0023 
0024 } // namespace Gaudi::Accumulators