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
L1Trigger
L1TNtuples
interface
L1AnalysisCaloTPDataFormat.h
Go to the documentation of this file.
1
#ifndef __L1Analysis_L1AnalysisCaloTPDataFormat_H__
2
#define __L1Analysis_L1AnalysisCaloTPDataFormat_H__
3
4
//-------------------------------------------------------------------------------
5
// Created 20/04/2010 - E. Conte, A.C. Le Bihan
6
//
7
//
8
// Original code : L1Trigger/L1TNtuples/L1NtupleProducer
9
//-------------------------------------------------------------------------------
10
11
#include <vector>
12
13
namespace
L1Analysis
{
14
struct
L1AnalysisCaloTPDataFormat
{
15
L1AnalysisCaloTPDataFormat
() {
Reset
(); };
16
~L1AnalysisCaloTPDataFormat
(){};
17
18
void
Reset
() {
19
nHCALTP
= 0;
20
hcalTPieta
.clear();
21
hcalTPiphi
.clear();
22
hcalTPCaliphi
.clear();
23
hcalTPet
.clear();
24
hcalTPcompEt
.clear();
25
hcalTPfineGrain
.clear();
26
nECALTP
= 0;
27
ecalTPieta
.clear();
28
ecalTPiphi
.clear();
29
ecalTPCaliphi
.clear();
30
ecalTPet
.clear();
31
ecalTPcompEt
.clear();
32
ecalTPfineGrain
.clear();
33
}
34
35
void
Init
() {}
36
37
short
nHCALTP
;
38
std::vector<short>
hcalTPieta
;
39
std::vector<short>
hcalTPiphi
;
40
std::vector<short>
hcalTPCaliphi
;
41
std::vector<float>
hcalTPet
;
42
std::vector<short>
hcalTPcompEt
;
43
std::vector<short>
hcalTPfineGrain
;
44
45
short
nECALTP
;
46
std::vector<short>
ecalTPieta
;
47
std::vector<short>
ecalTPiphi
;
48
std::vector<short>
ecalTPCaliphi
;
49
std::vector<float>
ecalTPet
;
50
std::vector<short>
ecalTPcompEt
;
51
std::vector<short>
ecalTPfineGrain
;
52
};
53
}
// namespace L1Analysis
54
#endif
L1Analysis::L1AnalysisCaloTPDataFormat::nHCALTP
short nHCALTP
Definition:
L1AnalysisCaloTPDataFormat.h:37
L1Analysis::L1AnalysisCaloTPDataFormat::ecalTPfineGrain
std::vector< short > ecalTPfineGrain
Definition:
L1AnalysisCaloTPDataFormat.h:51
L1Analysis::L1AnalysisCaloTPDataFormat::ecalTPieta
std::vector< short > ecalTPieta
Definition:
L1AnalysisCaloTPDataFormat.h:46
L1Analysis::L1AnalysisCaloTPDataFormat::ecalTPCaliphi
std::vector< short > ecalTPCaliphi
Definition:
L1AnalysisCaloTPDataFormat.h:48
L1Analysis::L1AnalysisCaloTPDataFormat::Init
void Init()
Definition:
L1AnalysisCaloTPDataFormat.h:35
L1Analysis::L1AnalysisCaloTPDataFormat::nECALTP
short nECALTP
Definition:
L1AnalysisCaloTPDataFormat.h:45
L1Analysis::L1AnalysisCaloTPDataFormat::L1AnalysisCaloTPDataFormat
L1AnalysisCaloTPDataFormat()
Definition:
L1AnalysisCaloTPDataFormat.h:15
L1Analysis::L1AnalysisCaloTPDataFormat::ecalTPiphi
std::vector< short > ecalTPiphi
Definition:
L1AnalysisCaloTPDataFormat.h:47
L1Analysis::L1AnalysisCaloTPDataFormat::Reset
void Reset()
Definition:
L1AnalysisCaloTPDataFormat.h:18
L1Analysis::L1AnalysisCaloTPDataFormat::hcalTPCaliphi
std::vector< short > hcalTPCaliphi
Definition:
L1AnalysisCaloTPDataFormat.h:40
L1Analysis::L1AnalysisCaloTPDataFormat::ecalTPcompEt
std::vector< short > ecalTPcompEt
Definition:
L1AnalysisCaloTPDataFormat.h:50
L1Analysis::L1AnalysisCaloTPDataFormat::~L1AnalysisCaloTPDataFormat
~L1AnalysisCaloTPDataFormat()
Definition:
L1AnalysisCaloTPDataFormat.h:16
L1Analysis::L1AnalysisCaloTPDataFormat
Definition:
L1AnalysisCaloTPDataFormat.h:14
L1Analysis::L1AnalysisCaloTPDataFormat::hcalTPcompEt
std::vector< short > hcalTPcompEt
Definition:
L1AnalysisCaloTPDataFormat.h:42
L1Analysis::L1AnalysisCaloTPDataFormat::hcalTPieta
std::vector< short > hcalTPieta
Definition:
L1AnalysisCaloTPDataFormat.h:38
L1Analysis::L1AnalysisCaloTPDataFormat::ecalTPet
std::vector< float > ecalTPet
Definition:
L1AnalysisCaloTPDataFormat.h:49
L1Analysis
Definition:
L1AnalysisBMTFInputs.h:18
L1Analysis::L1AnalysisCaloTPDataFormat::hcalTPet
std::vector< float > hcalTPet
Definition:
L1AnalysisCaloTPDataFormat.h:41
L1Analysis::L1AnalysisCaloTPDataFormat::hcalTPiphi
std::vector< short > hcalTPiphi
Definition:
L1AnalysisCaloTPDataFormat.h:39
L1Analysis::L1AnalysisCaloTPDataFormat::hcalTPfineGrain
std::vector< short > hcalTPfineGrain
Definition:
L1AnalysisCaloTPDataFormat.h:43
Generated for CMSSW Reference Manual by
1.8.14