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
src
JetMETCorrections
FFTJetObjects
interface
AbsFFTSpecificScaleCalculator.h
Go to the documentation of this file.
1
#ifndef JetMETCorrections_FFTJetObjects_AbsFFTSpecificScaleCalculator_h
2
#define JetMETCorrections_FFTJetObjects_AbsFFTSpecificScaleCalculator_h
3
4
#include "
DataFormats/JetReco/interface/Jet.h
"
5
#include "
DataFormats/JetReco/interface/FFTJet.h
"
6
#include "
DataFormats/Math/interface/LorentzVector.h
"
7
#include "
JetMETCorrections/FFTJetObjects/interface/FFTJetObjectFactory.h
"
8
9
//
10
// A non-templated base class which can often be used to provide
11
// the mapping from jet quantities into lookup table variables
12
//
13
struct
AbsFFTSpecificScaleCalculator
{
14
inline
virtual
~AbsFFTSpecificScaleCalculator
() {}
15
16
virtual
void
mapFFTJet
(
const
reco::Jet
&
jet
,
17
const
reco::FFTJet<float>
& fftJet,
18
const
math::XYZTLorentzVector
& current,
19
double
*
buf
,
20
unsigned
dim)
const
= 0;
21
};
22
23
//
24
// The factory for classes derived from AbsFFTSpecificScaleCalculator.
25
// Note that there are no public constructors of this factory. All API
26
// is via the static wrapper.
27
//
28
class
FFTSpecificScaleCalculatorFactory
:
public
DefaultFFTJetObjectFactory
<AbsFFTSpecificScaleCalculator> {
29
typedef
DefaultFFTJetObjectFactory<AbsFFTSpecificScaleCalculator>
Base
;
30
friend
class
StaticFFTJetObjectFactory
<
FFTSpecificScaleCalculatorFactory
>;
31
FFTSpecificScaleCalculatorFactory
();
//NOLINT
32
};
33
34
typedef
StaticFFTJetObjectFactory<FFTSpecificScaleCalculatorFactory>
StaticFFTSpecificScaleCalculatorFactory
;
35
36
AbsFFTSpecificScaleCalculator
*
parseFFTSpecificScaleCalculator
(
const
edm::ParameterSet
& ps,
37
const
std::string
& tableDescription);
38
39
#endif // JetMETCorrections_FFTJetObjects_AbsFFTSpecificScaleCalculator_h
metsig::jet
Definition:
SignAlgoResolutions.h:47
reco::Jet
Base class for all types of Jets.
Definition:
Jet.h:20
FFTJet.h
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
math::XYZTLorentzVector
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition:
LorentzVector.h:29
AbsFFTSpecificScaleCalculator::mapFFTJet
virtual void mapFFTJet(const reco::Jet &jet, const reco::FFTJet< float > &fftJet, const math::XYZTLorentzVector ¤t, double *buf, unsigned dim) const =0
visDQMUpload.buf
buf
Definition:
visDQMUpload.py:153
FFTSpecificScaleCalculatorFactory::Base
DefaultFFTJetObjectFactory< AbsFFTSpecificScaleCalculator > Base
Definition:
AbsFFTSpecificScaleCalculator.h:29
parseFFTSpecificScaleCalculator
AbsFFTSpecificScaleCalculator * parseFFTSpecificScaleCalculator(const edm::ParameterSet &ps, const std::string &tableDescription)
Definition:
AbsFFTSpecificScaleCalculator.cc:23
Jet.h
LorentzVector.h
reco::FFTJet< float >
StaticFFTJetObjectFactory
Definition:
FFTJetObjectFactory.h:53
AbsFFTSpecificScaleCalculator::~AbsFFTSpecificScaleCalculator
virtual ~AbsFFTSpecificScaleCalculator()
Definition:
AbsFFTSpecificScaleCalculator.h:14
StaticFFTSpecificScaleCalculatorFactory
StaticFFTJetObjectFactory< FFTSpecificScaleCalculatorFactory > StaticFFTSpecificScaleCalculatorFactory
Definition:
AbsFFTSpecificScaleCalculator.h:34
AbsFFTSpecificScaleCalculator
Definition:
AbsFFTSpecificScaleCalculator.h:13
FFTSpecificScaleCalculatorFactory
Definition:
AbsFFTSpecificScaleCalculator.h:28
FFTJetObjectFactory.h
DefaultFFTJetObjectFactory
Definition:
FFTJetObjectFactory.h:26
FFTSpecificScaleCalculatorFactory::FFTSpecificScaleCalculatorFactory
FFTSpecificScaleCalculatorFactory()
Definition:
AbsFFTSpecificScaleCalculator.cc:9
edm::ParameterSet
Definition:
ParameterSet.h:48
Generated for CMSSW Reference Manual by
1.8.14