ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
blob
master
CI
Core
include
Acts
EventData
Fitter
Geometry
MagneticField
Material
Propagator
Seeding
Surfaces
TrackFinder
Utilities
detail
MPL
all_of.hpp
any_of.hpp
are_sorted.hpp
are_within.hpp
at_index.hpp
get_position.hpp
has_duplicates.hpp
is_contained.hpp
type_collector.hpp
Axis.hpp
AxisFwd.hpp
Extendable.hpp
Grid.hpp
grid_helper.hpp
GridFwd.hpp
interpolation_impl.hpp
periodic.hpp
RealQuadraticEquation.hpp
ReferenceWrapperAnyCompat.hpp
AnnealingUtility.hpp
BinAdjustment.hpp
BinAdjustmentVolume.hpp
BinnedArray.hpp
BinnedArrayXD.hpp
BinningData.hpp
BinningType.hpp
BinUtility.hpp
BoundingBox.hpp
BoundingBox.ipp
CalibrationContext.hpp
Definitions.hpp
FiniteStateMachine.hpp
Frustum.hpp
Frustum.ipp
Helpers.hpp
IAxis.hpp
Interpolation.hpp
Intersection.hpp
Logger.hpp
MultiIndex.hpp
ParameterDefinitions.hpp
ParameterTypes.hpp
PdgParticle.hpp
Ray.hpp
Ray.ipp
Result.hpp
ThrowAssert.hpp
TypeTraits.hpp
Units.hpp
UnitVectors.hpp
Vertexing
Visualization
src
doc
Examples
Fatras
Plugins
Tests
thirdparty
analysis
coresoftware
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
all_of.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file all_of.hpp
1
// This file is part of the Acts project.
2
//
3
// Copyright (C) 2016-2018 CERN for the benefit of the Acts project
4
//
5
// This Source Code Form is subject to the terms of the Mozilla Public
6
// License, v. 2.0. If a copy of the MPL was not distributed with this
7
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
9
#pragma once
10
#include <type_traits>
11
12
namespace
Acts {
13
14
namespace
detail {
15
16
namespace
{
17
// clang-format off
18
template
<
bool
...
values
>
19
struct
all_of : std::true_type {};
20
21
template
<
bool
... others>
22
struct
all_of<
false
, others...> :
public
std::false_type {};
23
24
template
<
bool
... others>
25
struct
all_of<
true
, others...> :
public
all_of<others...> {};
26
// clang-format on
27
}
// end of anonymous namespace
28
29
template
<
bool
...
values
>
30
constexpr
bool
all_of_v
= all_of<
values
...>
::value
;
31
}
// namespace detail
32
33
}
// namespace Acts
acts
blob
master
Core
include
Acts
Utilities
detail
MPL
all_of.hpp
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:21
using
1.8.2 with
ECCE GitHub integration