ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
analysis
coresoftware
blob
master
calibrations
generators
offline
database
framework
packages
CaloBase
RawCluster.cc
RawCluster.h
RawClusterContainer.cc
RawClusterContainer.h
RawClusterContainerLinkDef.h
RawClusterDefs.h
RawClusterDefsLinkDef.h
RawClusterLinkDef.h
RawClusterUtility.h
RawClusterUtilityLinkDef.h
RawClusterv1.cc
RawClusterv1.h
RawClusterv1LinkDef.h
RawTower.cc
RawTower.h
RawTowerContainer.cc
RawTowerContainer.h
RawTowerContainerLinkDef.h
RawTowerDeadMap.cc
RawTowerDeadMap.h
RawTowerDeadMapLinkDef.h
RawTowerDeadMapv1.cc
RawTowerDeadMapv1.h
RawTowerDeadMapv1LinkDef.h
RawTowerDefs.h
RawTowerDefsLinkDef.h
RawTowerGeom.cc
RawTowerGeom.h
RawTowerGeomContainer.cc
RawTowerGeomContainer.h
RawTowerGeomContainer_Cylinderv1.cc
RawTowerGeomContainer_Cylinderv1.h
RawTowerGeomContainer_Cylinderv1LinkDef.h
RawTowerGeomContainerLinkDef.h
RawTowerGeomContainerv1.cc
RawTowerGeomContainerv1.h
RawTowerGeomContainerv1LinkDef.h
RawTowerGeomLinkDef.h
RawTowerGeomv1.cc
RawTowerGeomv1.h
RawTowerGeomv1LinkDef.h
RawTowerGeomv2.cc
RawTowerGeomv2.h
RawTowerGeomv2LinkDef.h
RawTowerGeomv3.cc
RawTowerGeomv3.h
RawTowerGeomv3LinkDef.h
RawTowerGeomv4.cc
RawTowerGeomv4.h
RawTowerGeomv4LinkDef.h
RawTowerLinkDef.h
RawTowerv1.cc
RawTowerv1.h
RawTowerv1LinkDef.h
RawTowerv2.cc
RawTowerv2.h
RawTowerv2LinkDef.h
CaloReco
centrality
ClusterIso
compressor
Half
HelixHough
intt
jetbackground
KFParticle_sPHENIX
micromegas
mvtx
NodeDump
particleflow
PHField
PHGenFitPkg
PHGeometry
PHTpcTracker
tpc
tpccalib
tpcdaq
trackbase
trackbase_historic
trackreco
trigger
vararray
QA
simulation
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
RawClusterContainer.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file RawClusterContainer.h
1
#ifndef CALOBASE_RAWCLUSTERCONTAINER_H
2
#define CALOBASE_RAWCLUSTERCONTAINER_H
3
4
#include "
RawClusterDefs.h
"
5
6
#include <
phool/PHObject.h
>
7
8
#include <iostream>
9
#include <map>
10
#include <utility>
11
12
class
RawCluster
;
13
14
class
RawClusterContainer
:
public
PHObject
15
{
16
public
:
17
typedef
std::map<RawClusterDefs::keytype, RawCluster *>
Map
;
18
typedef
Map::iterator
Iterator
;
19
typedef
Map::const_iterator
ConstIterator
;
20
typedef
std::pair<Iterator, Iterator>
Range
;
21
typedef
std::pair<ConstIterator, ConstIterator>
ConstRange
;
22
23
RawClusterContainer
() {}
24
~RawClusterContainer
()
override
{}
25
26
void
Reset
()
override
;
27
int
isValid
()
const override
;
28
void
identify
(std::ostream &os = std::cout)
const override
;
29
30
ConstIterator
AddCluster
(
RawCluster
*clus);
31
32
RawCluster
*
getCluster
(
const
RawClusterDefs::keytype
id
);
33
const
RawCluster
*
getCluster
(
const
RawClusterDefs::keytype
id
)
const
;
34
36
ConstRange
getClusters
(
void
)
const
;
37
Range
getClusters
(
void
);
38
const
Map
&
getClustersMap
()
const
{
return
_clusters
; }
39
Map
&
getClustersMap
() {
return
_clusters
; }
40
41
unsigned
int
size
()
const
{
return
_clusters
.size(); }
42
double
getTotalEdep
()
const
;
43
44
protected
:
45
Map
_clusters
;
46
47
ClassDefOverride(
RawClusterContainer
, 1)
48
};
49
50
#endif
coresoftware
blob
master
offline
packages
CaloBase
RawClusterContainer.h
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:34
using
1.8.2 with
ECCE GitHub integration