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
UtilAlgos
interface
DummySelector.h
Go to the documentation of this file.
1
#ifndef CommonTools_UtilAlgos_DummySelector_h
2
#define CommonTools_UtilAlgos_DummySelector_h
3
/* \class DummySelector
4
*
5
* Dummy generic selector following the
6
* interface proposed in the document:
7
*
8
* https://twiki.cern.ch/twiki/bin/view/CMS/SelectorInterface
9
*
10
* \author Luca Lista, INFN
11
*/
12
#include "
CommonTools/UtilAlgos/interface/EventSetupInitTrait.h
"
13
14
#include "
FWCore/Framework/interface/ConsumesCollector.h
"
15
#include "
FWCore/Utilities/interface/EDMException.h
"
16
17
namespace
edm
{
18
class
ParameterSet
;
19
class
Event
;
20
class
EventSetup
;
21
}
// namespace edm
22
23
class
DummySelector
{
24
public
:
25
explicit
DummySelector
(
const
edm::ParameterSet
&,
edm::ConsumesCollector
& iC) :
updated_
(
false
) {}
26
void
newEvent
(
const
edm::Event
&,
const
edm::EventSetup
&) {
updated_
=
true
; }
27
template
<
typename
T>
28
bool
operator()
(
const
T
&) {
29
if
(!
updated_
)
30
throw
edm::Exception
(
edm::errors::Configuration
) <<
"DummySelector: forgot to call newEvent\n"
;
31
return
true
;
32
}
33
34
private
:
35
bool
updated_
;
36
};
37
38
namespace
dummy
{
39
template
<
typename
T>
40
inline
bool
select
(
const
T
&) {
41
return
true
;
42
}
43
}
// namespace dummy
44
45
EVENTSETUP_STD_INIT
(
DummySelector
);
46
47
#endif
dummy
Definition:
DummySelector.h:38
DummySelector::updated_
bool updated_
Definition:
DummySelector.h:35
Exception
Definition:
hltDiff.cc:245
ParameterSet
Definition:
Functions.h:16
funct::false
false
Definition:
Factorize.h:29
EVENTSETUP_STD_INIT
#define EVENTSETUP_STD_INIT(SELECTOR)
Definition:
EventSetupInitTrait.h:125
dummy::select
bool select(const T &)
Definition:
DummySelector.h:40
edm::errors::Configuration
Definition:
EDMException.h:36
DummySelector::operator()
bool operator()(const T &)
Definition:
DummySelector.h:28
EventSetup
EDMException.h
DummySelector::newEvent
void newEvent(const edm::Event &, const edm::EventSetup &)
Definition:
DummySelector.h:26
edm::EventSetup
Definition:
EventSetup.h:59
DummySelector
Definition:
DummySelector.h:23
Event
edm
HLT enums.
Definition:
AlignableModifier.h:19
DummySelector::DummySelector
DummySelector(const edm::ParameterSet &, edm::ConsumesCollector &iC)
Definition:
DummySelector.h:25
edm::ParameterSet
Definition:
ParameterSet.h:47
edm::Event
Definition:
Event.h:73
T
long double T
Definition:
Basic3DVectorLD.h:48
ConsumesCollector.h
EventSetupInitTrait.h
edm::ConsumesCollector
Definition:
ConsumesCollector.h:45
Generated for CMSSW Reference Manual by
1.8.14