Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Properties
_
a
c
d
e
f
l
m
o
p
s
t
u
v
+
Related Functions
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
CommonTools
Utils
interface
RangeSelector.h
Go to the documentation of this file.
1
#ifndef RecoAlgos_RangeSelector_h
2
#define RecoAlgos_RangeSelector_h
3
/* \class RangeSelector
4
*
5
* \author Luca Lista, INFN
6
*
7
* $Id: RangeSelector.h,v 1.1 2009/02/24 14:40:26 llista Exp $
8
*/
9
#include <string>
10
11
template
<
typename
T,
double
(T::*fun)() const>
12
struct
RangeSelector
{
13
RangeSelector
(
double
min
,
double
max
) :
min_
(
min
),
max_
(
max
) {}
14
bool
operator()
(
const
T
&
t
)
const
{
15
double
x
= (
t
.*fun)();
16
return
min_
<=
x
&&
x
<=
max_
;
17
}
18
19
private
:
20
double
min_
,
max_
;
21
};
22
23
#endif
RangeSelector::max_
double max_
Definition:
RangeSelector.h:20
submitPVValidationJobs.t
string t
Definition:
submitPVValidationJobs.py:651
RangeSelector::min_
double min_
Definition:
RangeSelector.h:20
SiStripPI::min
Definition:
SiStripPayloadInspectorHelper.h:178
SiStripPI::max
Definition:
SiStripPayloadInspectorHelper.h:178
RangeSelector::RangeSelector
RangeSelector(double min, double max)
Definition:
RangeSelector.h:13
RangeSelector::operator()
bool operator()(const T &t) const
Definition:
RangeSelector.h:14
RangeSelector
Definition:
RangeSelector.h:12
DDAxes::x
T
long double T
Definition:
Basic3DVectorLD.h:48
Generated for CMSSW Reference Manual by
1.8.14