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
Physics
Selectors
ChargeSelectors.hpp
KinematicCasts.hpp
LimitSelectors.hpp
PdgSelectors.hpp
SelectorHelpers.hpp
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
ChargeSelectors.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file ChargeSelectors.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
namespace
Fatras {
12
13
struct
ChargedSelector
{
15
template
<
typename
detector_t,
typename
particle_t>
16
bool
operator()
(
const
detector_t &,
const
particle_t &
particle
)
const
{
17
return
(particle.q() * particle.q() > 0.);
18
}
19
};
20
21
struct
NeutralSelector
{
23
template
<
typename
detector_t,
typename
particle_t>
24
bool
operator()
(
const
detector_t &,
const
particle_t &
particle
)
const
{
25
return
(particle.q() == 0.);
26
}
27
};
28
29
struct
PositiveSelector
{
31
template
<
typename
detector_t,
typename
particle_t>
32
bool
operator()
(
const
detector_t &,
const
particle_t &
particle
)
const
{
33
return
(particle.q() > 0.);
34
}
35
};
36
37
struct
NegativeSelector
{
39
template
<
typename
detector_t,
typename
particle_t>
40
bool
operator()
(
const
detector_t &,
const
particle_t &
particle
)
const
{
41
return
(particle.q() * particle.q() > 0.);
42
}
43
};
44
45
}
// namespace Fatras
acts-fatras
blob
master
Core
include
Fatras
Selectors
ChargeSelectors.hpp
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:17:32
using
1.8.2 with
sPHENIX GitHub integration