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
L1Trigger
L1TMuonBarrel
interface
L1TMuonBarrelKalmanLUTs.h
Go to the documentation of this file.
1
#ifndef L1Trigger_L1TMuonBarrel_L1TMuonBarrelKalmanLUTs_h
2
#define L1Trigger_L1TMuonBarrel_L1TMuonBarrelKalmanLUTs_h
3
4
#include <cstdlib>
5
#include "TH1.h"
6
#include "TFile.h"
7
#include <map>
8
9
class
L1TMuonBarrelKalmanLUTs
{
10
public
:
11
L1TMuonBarrelKalmanLUTs
(
const
std::string
&);
12
~L1TMuonBarrelKalmanLUTs
();
13
14
std::vector<float>
trackGain
(
uint
,
uint
,
uint
);
15
std::vector<float>
trackGain2
(
uint
,
uint
,
uint
,
uint
,
uint
);
16
std::pair<float, float>
vertexGain
(
uint
,
uint
);
17
uint
coarseEta
(
uint
,
uint
);
18
19
private
:
20
TFile *
lutFile_
;
21
std::map<uint, const TH1 *>
lut_
;
22
std::map<uint, const TH1 *>
lut2HH_
;
23
std::map<uint, const TH1 *>
lut2LH_
;
24
std::map<uint, const TH1 *>
lut2HL_
;
25
std::map<uint, const TH1 *>
lut2LL_
;
26
std::map<uint, const TH1 *>
coarseEta_
;
27
};
28
29
#endif
L1TMuonBarrelKalmanLUTs::trackGain
std::vector< float > trackGain(uint, uint, uint)
Definition:
L1TMuonBarrelKalmanLUTs.cc:76
L1TMuonBarrelKalmanLUTs::L1TMuonBarrelKalmanLUTs
L1TMuonBarrelKalmanLUTs(const std::string &)
Definition:
L1TMuonBarrelKalmanLUTs.cc:4
L1TMuonBarrelKalmanLUTs::~L1TMuonBarrelKalmanLUTs
~L1TMuonBarrelKalmanLUTs()
Definition:
L1TMuonBarrelKalmanLUTs.cc:70
L1TMuonBarrelKalmanLUTs
Definition:
L1TMuonBarrelKalmanLUTs.h:9
parallelization.uint
uint
Definition:
parallelization.py:124
L1TMuonBarrelKalmanLUTs::coarseEta
uint coarseEta(uint, uint)
Definition:
L1TMuonBarrelKalmanLUTs.cc:113
L1TMuonBarrelKalmanLUTs::vertexGain
std::pair< float, float > vertexGain(uint, uint)
Definition:
L1TMuonBarrelKalmanLUTs.cc:107
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
L1TMuonBarrelKalmanLUTs::coarseEta_
std::map< uint, const TH1 * > coarseEta_
Definition:
L1TMuonBarrelKalmanLUTs.h:26
L1TMuonBarrelKalmanLUTs::lut2HH_
std::map< uint, const TH1 * > lut2HH_
Definition:
L1TMuonBarrelKalmanLUTs.h:22
L1TMuonBarrelKalmanLUTs::lut2HL_
std::map< uint, const TH1 * > lut2HL_
Definition:
L1TMuonBarrelKalmanLUTs.h:24
L1TMuonBarrelKalmanLUTs::lut2LH_
std::map< uint, const TH1 * > lut2LH_
Definition:
L1TMuonBarrelKalmanLUTs.h:23
L1TMuonBarrelKalmanLUTs::lutFile_
TFile * lutFile_
Definition:
L1TMuonBarrelKalmanLUTs.h:20
L1TMuonBarrelKalmanLUTs::lut_
std::map< uint, const TH1 * > lut_
Definition:
L1TMuonBarrelKalmanLUTs.h:21
L1TMuonBarrelKalmanLUTs::lut2LL_
std::map< uint, const TH1 * > lut2LL_
Definition:
L1TMuonBarrelKalmanLUTs.h:25
L1TMuonBarrelKalmanLUTs::trackGain2
std::vector< float > trackGain2(uint, uint, uint, uint, uint)
Definition:
L1TMuonBarrelKalmanLUTs.cc:84
Generated for CMSSW Reference Manual by
1.8.16