Main Page
Namespaces
Classes
Package Documentation
DataFormats
EgammaReco
interface
HFEMClusterShape.h
Go to the documentation of this file.
1
2
#ifndef HFEMClusterShape_h
3
#define HFEMClusterShape_h
4
5
#include <Rtypes.h>
6
#include "
DataFormats/EgammaReco/interface/HFEMClusterShapeFwd.h
"
7
#include "
DataFormats/DetId/interface/DetId.h
"
8
/*class reco::HFEMClusterShape HFEMClusterShape.h DataFormats/EgammaReco/interface/HFEMClusterShape.h
9
*
10
* A Cluster Shape of a Possible EM cluster in the HF detector
11
* Contains the DetId of its Seed
12
*
13
* \author Kevin Klapoetke, University of Minnesota
14
*
15
*
16
*/
17
18
namespace
reco
{
19
20
class
HFEMClusterShape
{
21
public
:
22
HFEMClusterShape
() { }
23
24
HFEMClusterShape
(
double
eLong1x1
,
double
eShort1x1
,
25
double
eLong3x3
,
double
eShort3x3
,
double
eLong5x5
,
26
double
eShort5x5
,
double
eLongCore,
27
double
CellEta
,
double
CellPhi
,
28
DetId
seed
);
29
30
31
//energy in long or short fibers various cluster sizes
32
double
eLong1x1
()
const
{
return
eLong1x1_
;}
33
double
eShort1x1
()
const
{
return
eShort1x1_
;}
34
double
eLong3x3
()
const
{
return
eLong3x3_
;}
35
double
eShort3x3
()
const
{
return
eShort3x3_
;}
36
double
eLong5x5
()
const
{
return
eLong5x5_
;}
37
double
eShort5x5
()
const
{
return
eShort5x5_
;}
38
39
//total energy in various clusters
40
double
e1x1
()
const
;
41
double
e3x3
()
const
;
42
double
e5x5
()
const
;
43
44
//Identification Variables
45
//Longetudinal variable: E(3x3,short fibers)/E(3x3,long fibers)
46
double
eSeL
()
const
;
47
//Transverse Variable: E(Core of cluster)/E(3x3)
48
double
eCOREe9
()
const
;
49
//Shower Exclusion Variable: E(3x3)/E(5x5)
50
double
e9e25
()
const
;
51
52
//energy in central highest energy cells (at least 50% energy of previous total energy startign with seed cell)
53
double
eCore
()
const
{
return
eLongCore_
;}
54
55
double
CellEta
()
const
{
return
CellEta_
;}
56
double
CellPhi
()
const
{
return
CellPhi_
;}
57
58
//seed cell of cluster DetId
59
DetId
seed
()
const
{
return
seed_
;}
60
61
private
:
62
double
eLong1x1_
,
eShort1x1_
,
eLong3x3_
,
eShort3x3_
,
eLong5x5_
,
eShort5x5_
,
eLongCore_
,
CellEta_
,
CellPhi_
;
63
DetId
seed_
;
64
65
};
66
67
}
68
69
70
#endif
reco::HFEMClusterShape::eLong3x3_
double eLong3x3_
Definition:
HFEMClusterShape.h:62
reco::HFEMClusterShape::e9e25
double e9e25() const
Definition:
HFEMClusterShape.cc:40
reco::HFEMClusterShape::eLong1x1_
double eLong1x1_
Definition:
HFEMClusterShape.h:62
reco::HFEMClusterShape
Definition:
HFEMClusterShape.h:20
reco::HFEMClusterShape::eShort3x3_
double eShort3x3_
Definition:
HFEMClusterShape.h:62
reco::HFEMClusterShape::eLong5x5
double eLong5x5() const
Definition:
HFEMClusterShape.h:36
reco::HFEMClusterShape::eLong1x1
double eLong1x1() const
Definition:
HFEMClusterShape.h:32
reco::HFEMClusterShape::eShort1x1_
double eShort1x1_
Definition:
HFEMClusterShape.h:62
reco::HFEMClusterShape::CellPhi
double CellPhi() const
Definition:
HFEMClusterShape.h:56
reco::HFEMClusterShape::CellPhi_
double CellPhi_
Definition:
HFEMClusterShape.h:62
reco::HFEMClusterShape::eSeL
double eSeL() const
Definition:
HFEMClusterShape.cc:34
reco::HFEMClusterShape::eCOREe9
double eCOREe9() const
Definition:
HFEMClusterShape.cc:37
reco::HFEMClusterShape::eShort3x3
double eShort3x3() const
Definition:
HFEMClusterShape.h:35
reco::HFEMClusterShape::eCore
double eCore() const
Definition:
HFEMClusterShape.h:53
reco::HFEMClusterShape::eShort5x5_
double eShort5x5_
Definition:
HFEMClusterShape.h:62
reco::HFEMClusterShape::eLong3x3
double eLong3x3() const
Definition:
HFEMClusterShape.h:34
reco::HFEMClusterShape::HFEMClusterShape
HFEMClusterShape()
Definition:
HFEMClusterShape.h:22
reco::HFEMClusterShape::e5x5
double e5x5() const
Definition:
HFEMClusterShape.cc:30
reco::HFEMClusterShape::seed_
DetId seed_
Definition:
HFEMClusterShape.h:63
reco::HFEMClusterShape::seed
DetId seed() const
Definition:
HFEMClusterShape.h:59
reco::HFEMClusterShape::CellEta_
double CellEta_
Definition:
HFEMClusterShape.h:62
reco::HFEMClusterShape::eLong5x5_
double eLong5x5_
Definition:
HFEMClusterShape.h:62
DetId
Definition:
DetId.h:18
reco::HFEMClusterShape::eLongCore_
double eLongCore_
Definition:
HFEMClusterShape.h:62
reco::HFEMClusterShape::eShort1x1
double eShort1x1() const
Definition:
HFEMClusterShape.h:33
reco
fixed size matrix
Definition:
AlignmentAlgorithmBase.h:43
reco::HFEMClusterShape::eShort5x5
double eShort5x5() const
Definition:
HFEMClusterShape.h:37
reco::HFEMClusterShape::e3x3
double e3x3() const
Definition:
HFEMClusterShape.cc:27
reco::HFEMClusterShape::CellEta
double CellEta() const
Definition:
HFEMClusterShape.h:55
DetId.h
HFEMClusterShapeFwd.h
reco::HFEMClusterShape::e1x1
double e1x1() const
Definition:
HFEMClusterShape.cc:24
Generated for CMSSW Reference Manual by
1.8.11