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
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
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
FWCore
Framework
src
MakeModuleHelper.h
Go to the documentation of this file.
1
#ifndef FWCore_Framework_MakeModuleHelper_h
2
#define FWCore_Framework_MakeModuleHelper_h
3
// -*- C++ -*-
4
//
5
// Package: FWCore/Framework
6
// Class : MakeModuleHelper
7
//
16
//
17
// Original Author: Chris Jones
18
// Created: Sun, 25 Aug 2013 20:54:45 GMT
19
//
20
21
// system include files
22
#include <memory>
23
// user include files
24
25
// forward declarations
26
namespace
edm
{
27
class
ParameterSet
;
28
29
template
<
typename
Base>
30
class
MakeModuleHelper
{
31
public
:
32
MakeModuleHelper
() =
delete
;
33
MakeModuleHelper
(
const
MakeModuleHelper
&) =
delete
;
// stop default
34
35
const
MakeModuleHelper
&
operator=
(
const
MakeModuleHelper
&) =
delete
;
// stop default
36
37
template
<
typename
T>
38
static
std::unique_ptr<Base>
makeModule
(
ParameterSet
const
&
pset
) {
39
auto
module
= std::make_unique<T>(
pset
);
40
return
std::unique_ptr<Base>(
module
.release());
41
}
42
};
43
}
// namespace edm
44
45
#endif
edm
HLT enums.
Definition:
AlignableModifier.h:19
edm::MakeModuleHelper::operator=
const MakeModuleHelper & operator=(const MakeModuleHelper &)=delete
edm::MakeModuleHelper
Definition:
MakeModuleHelper.h:30
edm::ParameterSet
Definition:
ParameterSet.h:47
ParameterSet
Definition:
Functions.h:16
edm::MakeModuleHelper::makeModule
static std::unique_ptr< Base > makeModule(ParameterSet const &pset)
Definition:
MakeModuleHelper.h:38
edm::MakeModuleHelper::MakeModuleHelper
MakeModuleHelper()=delete
callgraph.module
module
Definition:
callgraph.py:61
muonDTDigis_cfi.pset
pset
Definition:
muonDTDigis_cfi.py:27
Generated for CMSSW Reference Manual by
1.8.16