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
L1THGCal
interface
backend
HGCalMulticlusteringImpl.h
Go to the documentation of this file.
1
#ifndef __L1Trigger_L1THGCal_HGCalMulticlusteringImpl_h__
2
#define __L1Trigger_L1THGCal_HGCalMulticlusteringImpl_h__
3
4
#include "
FWCore/ParameterSet/interface/ParameterSet.h
"
5
#include "
DataFormats/L1THGCal/interface/HGCalCluster.h
"
6
#include "
DataFormats/L1THGCal/interface/HGCalMulticluster.h
"
7
#include "
FWCore/MessageLogger/interface/MessageLogger.h
"
8
9
#include "
L1Trigger/L1THGCal/interface/HGCalTriggerGeometryBase.h
"
10
#include "
L1Trigger/L1THGCal/interface/backend/HGCalShowerShape.h
"
11
#include "
L1Trigger/L1THGCal/interface/HGCalTriggerTools.h
"
12
#include "
L1Trigger/L1THGCal/interface/backend/HGCalTriggerClusterIdentificationBase.h
"
13
14
class
HGCalMulticlusteringImpl
{
15
public
:
16
HGCalMulticlusteringImpl
(
const
edm::ParameterSet
& conf);
17
18
void
eventSetup
(
const
edm::EventSetup
& es) {
19
triggerTools_
.
eventSetup
(es);
20
shape_
.
eventSetup
(es);
21
}
22
23
bool
isPertinent
(
const
l1t::HGCalCluster
& clu,
const
l1t::HGCalMulticluster
& mclu,
double
dR
)
const
;
24
25
void
clusterizeDR
(
const
std::vector
<
edm::Ptr<l1t::HGCalCluster>
>& clustersPtr,
26
l1t::HGCalMulticlusterBxCollection
& multiclusters,
27
const
HGCalTriggerGeometryBase
& triggerGeometry);
28
29
void
clusterizeDBSCAN
(
const
std::vector
<
edm::Ptr<l1t::HGCalCluster>
>& clustersPtr,
30
l1t::HGCalMulticlusterBxCollection
& multiclusters,
31
const
HGCalTriggerGeometryBase
& triggerGeometry);
32
33
private
:
34
void
findNeighbor
(
const
std::vector
<std::pair<unsigned int, double>>& rankedList,
35
unsigned
int
searchInd,
36
const
std::vector
<
edm::Ptr<l1t::HGCalCluster>
>& clustersPtr,
37
std::vector<unsigned int>& neigbors);
38
void
finalizeClusters
(std::vector<l1t::HGCalMulticluster>&,
39
l1t::HGCalMulticlusterBxCollection
&,
40
const
HGCalTriggerGeometryBase
&);
41
42
double
dr_
;
43
double
ptC3dThreshold_
;
44
std::string
multiclusterAlgoType_
;
45
double
distDbscan_
= 0.005;
46
unsigned
minNDbscan_
= 3;
47
48
HGCalShowerShape
shape_
;
49
HGCalTriggerTools
triggerTools_
;
50
std::unique_ptr<HGCalTriggerClusterIdentificationBase>
id_
;
51
};
52
53
#endif
HGCalTriggerTools.h
HGCalTriggerGeometryBase
Definition:
HGCalTriggerGeometryBase.h:19
l1t::HGCalCluster
Definition:
HGCalCluster.h:11
HGCalTriggerTools::eventSetup
void eventSetup(const edm::EventSetup &)
Definition:
HGCalTriggerTools.cc:35
MessageLogger.h
HGCalMulticlusteringImpl::findNeighbor
void findNeighbor(const std::vector< std::pair< unsigned int, double >> &rankedList, unsigned int searchInd, const std::vector< edm::Ptr< l1t::HGCalCluster >> &clustersPtr, std::vector< unsigned int > &neigbors)
Definition:
HGCalMulticlusteringImpl.cc:37
HGCalShowerShape
Definition:
HGCalShowerShape.h:12
HGCalMulticlusteringImpl::clusterizeDBSCAN
void clusterizeDBSCAN(const std::vector< edm::Ptr< l1t::HGCalCluster >> &clustersPtr, l1t::HGCalMulticlusterBxCollection &multiclusters, const HGCalTriggerGeometryBase &triggerGeometry)
Definition:
HGCalMulticlusteringImpl.cc:103
HGCalMulticlusteringImpl::id_
std::unique_ptr< HGCalTriggerClusterIdentificationBase > id_
Definition:
HGCalMulticlusteringImpl.h:50
HGCalTriggerClusterIdentificationBase.h
HGCalMulticlusteringImpl::shape_
HGCalShowerShape shape_
Definition:
HGCalMulticlusteringImpl.h:48
HGCalShowerShape.h
HGCalMulticlusteringImpl::HGCalMulticlusteringImpl
HGCalMulticlusteringImpl(const edm::ParameterSet &conf)
Definition:
HGCalMulticlusteringImpl.cc:5
BXVector
Definition:
BXVector.h:15
l1t::HGCalMulticluster
Definition:
HGCalMulticluster.h:13
HGCalMulticluster.h
HGCalTriggerGeometryBase.h
HGCalMulticlusteringImpl::eventSetup
void eventSetup(const edm::EventSetup &es)
Definition:
HGCalMulticlusteringImpl.h:18
HGCalMulticlusteringImpl::clusterizeDR
void clusterizeDR(const std::vector< edm::Ptr< l1t::HGCalCluster >> &clustersPtr, l1t::HGCalMulticlusterBxCollection &multiclusters, const HGCalTriggerGeometryBase &triggerGeometry)
Definition:
HGCalMulticlusteringImpl.cc:72
edm::ParameterSet
Definition:
ParameterSet.h:47
HGCalMulticlusteringImpl::isPertinent
bool isPertinent(const l1t::HGCalCluster &clu, const l1t::HGCalMulticluster &mclu, double dR) const
Definition:
HGCalMulticlusteringImpl.cc:22
HGCalMulticlusteringImpl::multiclusterAlgoType_
std::string multiclusterAlgoType_
Definition:
HGCalMulticlusteringImpl.h:44
HGCalMulticlusteringImpl::dr_
double dr_
Definition:
HGCalMulticlusteringImpl.h:42
trackerHitRTTI::vector
Definition:
trackerHitRTTI.h:21
HGCalShowerShape::eventSetup
void eventSetup(const edm::EventSetup &es)
Definition:
HGCalShowerShape.h:21
edm::EventSetup
Definition:
EventSetup.h:58
HGCalCluster.h
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition:
AlCaHLTBitMon_QueryRunRegistry.py:256
HGCalMulticlusteringImpl::triggerTools_
HGCalTriggerTools triggerTools_
Definition:
HGCalMulticlusteringImpl.h:49
edm::Ptr
Definition:
AssociationVector.h:31
HGCalMulticlusteringImpl::distDbscan_
double distDbscan_
Definition:
HGCalMulticlusteringImpl.h:45
HGCalTriggerTools
Definition:
HGCalTriggerTools.h:32
HGCalMulticlusteringImpl::ptC3dThreshold_
double ptC3dThreshold_
Definition:
HGCalMulticlusteringImpl.h:43
HGC3DClusterGenMatchSelector_cfi.dR
dR
Definition:
HGC3DClusterGenMatchSelector_cfi.py:7
ParameterSet.h
HGCalMulticlusteringImpl::minNDbscan_
unsigned minNDbscan_
Definition:
HGCalMulticlusteringImpl.h:46
HGCalMulticlusteringImpl::finalizeClusters
void finalizeClusters(std::vector< l1t::HGCalMulticluster > &, l1t::HGCalMulticlusterBxCollection &, const HGCalTriggerGeometryBase &)
Definition:
HGCalMulticlusteringImpl.cc:166
HGCalMulticlusteringImpl
Definition:
HGCalMulticlusteringImpl.h:14
Generated for CMSSW Reference Manual by
1.8.16