Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
Analysis Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
acts-fatras
blob
master
Core
include
Fatras
Kernel
detail
LandauQuantile.hpp
physics_list_implementation.hpp
process_signature_check.hpp
RandomNumberDistributions.hpp
selector_list_implementation.hpp
selector_signature_check.hpp
Interactor.hpp
PhysicsList.hpp
Process.hpp
SelectorList.hpp
Simulator.hpp
Physics
Selectors
src
Tests
analysis
analysis_tpc_prototype
coresoftware
Doxygen_Assist
g4exampledetector
GenFit
JETSCAPE
KFParticle
macros
online_distribution
OnlMon
prototype
pythia6
rcdaq
RDBC
tutorials
doxygen_mainpage.h
File Members
Examples
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
selector_signature_check.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file selector_signature_check.hpp
1
// This file is part of the Acts project.
2
//
3
// Copyright (C) 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
11
#include "
Acts/Utilities/detail/MPL/type_collector.hpp
"
12
#include <type_traits>
13
14
namespace
Fatras {
15
27
namespace
detail {
28
29
namespace
{
30
template
<
typename
T
,
typename
detector_t,
typename
particle_t,
31
typename
= decltype(
32
std::declval<T>().
operator
()(std::declval<const detector_t &>(),
33
std::declval<const particle_t &>()))>
34
35
std::true_type
test_selector_list(
int
);
36
37
template
<
typename
,
typename
,
typename
>
std::false_type
test_selector_list(...);
38
39
template
<
typename
T,
typename
detector_t,
typename
particle_t>
40
struct
selector_list_signature_check
41
: decltype(test_selector_list<T, detector_t, particle_t>(0)) {};
42
43
}
// end of anonymous namespace
44
45
template
<
typename
T,
typename
detector_t,
typename
particle_t>
46
constexpr
bool
selector_list_signature_check_v
=
47
selector_list_signature_check<T, detector_t, particle_t>::value
;
48
49
}
// namespace detail
50
51
}
// namespace Fatras
acts-fatras
blob
master
Core
include
Fatras
Kernel
detail
selector_signature_check.hpp
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:17:32
using
1.8.2 with
sPHENIX GitHub integration