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
RecoMuon
MuonSeedGenerator
plugins
MuonSeedGenerator.h
Go to the documentation of this file.
1
#ifndef RecoMuon_MuonSeedGenerator_MuonSeedGenerator_H
2
#define RecoMuon_MuonSeedGenerator_MuonSeedGenerator_H
3
10
#include "
FWCore/Framework/interface/stream/EDProducer.h
"
11
#include "
FWCore/Utilities/interface/InputTag.h
"
12
#include "
FWCore/Utilities/interface/ESGetToken.h
"
13
#include "
DataFormats/TrajectorySeed/interface/TrajectorySeedCollection.h
"
14
#include <vector>
15
#include "
DataFormats/BeamSpot/interface/BeamSpot.h
"
16
#include "
MagneticField/Engine/interface/MagneticField.h
"
17
#include "
MagneticField/Records/interface/IdealMagneticFieldRecord.h
"
18
19
class
MuonSeedVFinder
;
20
class
MuonSeedVPatternRecognition
;
21
class
MuonSeedVCleaner
;
22
namespace
edm
{
23
class
ConfigurationDescriptions
;
24
}
25
26
class
MuonSeedGenerator
:
public
edm::stream::EDProducer
<> {
27
public
:
29
MuonSeedGenerator
(
const
edm::ParameterSet
&);
30
32
~MuonSeedGenerator
()
override
;
33
34
// Operations
35
37
void
produce
(
edm::Event
&,
const
edm::EventSetup
&)
override
;
38
39
static
void
fillDescriptions
(
edm::ConfigurationDescriptions
& descriptions);
40
41
protected
:
42
MuonSeedVPatternRecognition
*
thePatternRecognition
;
43
MuonSeedVFinder
*
theSeedFinder
;
44
MuonSeedVCleaner
*
theSeedCleaner
;
45
46
edm::InputTag
theBeamSpotTag
;
47
edm::EDGetTokenT<reco::BeamSpot>
beamspotToken
;
48
edm::ESGetToken<MagneticField, IdealMagneticFieldRecord>
magFieldToken
;
49
};
50
#endif
MuonSeedVCleaner
Definition:
MuonSeedVCleaner.h:6
MuonSeedGenerator::thePatternRecognition
MuonSeedVPatternRecognition * thePatternRecognition
Definition:
MuonSeedGenerator.h:42
MuonSeedGenerator
Definition:
MuonSeedGenerator.h:26
MuonSeedGenerator::theBeamSpotTag
edm::InputTag theBeamSpotTag
Definition:
MuonSeedGenerator.h:46
edm::EDGetTokenT< reco::BeamSpot >
edm
HLT enums.
Definition:
AlignableModifier.h:19
EDProducer.h
MuonSeedGenerator::~MuonSeedGenerator
~MuonSeedGenerator() override
Destructor.
Definition:
MuonSeedGenerator.cc:66
ESGetToken.h
MuonSeedGenerator::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition:
MuonSeedGenerator.cc:107
MuonSeedGenerator::magFieldToken
edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magFieldToken
Definition:
MuonSeedGenerator.h:48
BeamSpot.h
IdealMagneticFieldRecord.h
edm::ConfigurationDescriptions
Definition:
ConfigurationDescriptions.h:28
MuonSeedGenerator::theSeedCleaner
MuonSeedVCleaner * theSeedCleaner
Definition:
MuonSeedGenerator.h:44
edm::ParameterSet
Definition:
ParameterSet.h:47
MuonSeedGenerator::theSeedFinder
MuonSeedVFinder * theSeedFinder
Definition:
MuonSeedGenerator.h:43
MuonSeedGenerator::MuonSeedGenerator
MuonSeedGenerator(const edm::ParameterSet &)
Constructor.
Definition:
MuonSeedGenerator.cc:52
edm::stream::EDProducer
Definition:
EDProducer.h:38
MagneticField.h
edm::EventSetup
Definition:
EventSetup.h:58
MuonSeedGenerator::beamspotToken
edm::EDGetTokenT< reco::BeamSpot > beamspotToken
Definition:
MuonSeedGenerator.h:47
MuonSeedVFinder
Definition:
MuonSeedVFinder.h:19
TrajectorySeedCollection.h
edm::ESGetToken< MagneticField, IdealMagneticFieldRecord >
InputTag.h
MuonSeedGenerator::produce
void produce(edm::Event &, const edm::EventSetup &) override
reconstruct muon's seeds
Definition:
MuonSeedGenerator.cc:73
ConfigurationDescriptions
MuonSeedVPatternRecognition
Definition:
MuonSeedVPatternRecognition.h:8
edm::Event
Definition:
Event.h:73
edm::InputTag
Definition:
InputTag.h:15
Generated for CMSSW Reference Manual by
1.8.16