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
CaloReco
centrality
ClusterIso
compressor
Half
HelixHough
intt
jetbackground
KFParticle_sPHENIX
micromegas
mvtx
NodeDump
particleflow
PHField
PHGenFitPkg
PHGeometry
PHTpcTracker
tpc
tpccalib
tpcdaq
trackbase
trackbase_historic
ActsTransformations.cc
ActsTransformations.h
SvtxTrack.cc
SvtxTrack.h
SvtxTrack_FastSim.cc
SvtxTrack_FastSim.h
SvtxTrack_FastSim_v1.cc
SvtxTrack_FastSim_v1.h
SvtxTrack_FastSim_v1LinkDef.h
SvtxTrack_FastSim_v2.cc
SvtxTrack_FastSim_v2.h
SvtxTrack_FastSim_v2LinkDef.h
SvtxTrack_FastSimLinkDef.h
SvtxTrack_v1.cc
SvtxTrack_v1.h
SvtxTrack_v1LinkDef.h
SvtxTrack_v2.cc
SvtxTrack_v2.h
SvtxTrack_v2LinkDef.h
SvtxTrackLinkDef.h
SvtxTrackMap.cc
SvtxTrackMap.h
SvtxTrackMap_v1.cc
SvtxTrackMap_v1.h
SvtxTrackMap_v1LinkDef.h
SvtxTrackMapLinkDef.h
SvtxTrackState.h
SvtxTrackState_v1.cc
SvtxTrackState_v1.h
SvtxTrackState_v1LinkDef.h
SvtxTrackStateLinkDef.h
SvtxVertex.cc
SvtxVertex.h
SvtxVertex_v1.cc
SvtxVertex_v1.h
SvtxVertex_v1LinkDef.h
SvtxVertexLinkDef.h
SvtxVertexMap.cc
SvtxVertexMap.h
SvtxVertexMap_v1.cc
SvtxVertexMap_v1.h
SvtxVertexMap_v1LinkDef.h
SvtxVertexMapLinkDef.h
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
SvtxTrackMap_v1.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file SvtxTrackMap_v1.h
1
#ifndef TRACKBASEHISTORIC_SVTXTRACKMAPV1_H
2
#define TRACKBASEHISTORIC_SVTXTRACKMAPV1_H
3
4
#include "
SvtxTrack.h
"
5
#include "
SvtxTrackMap.h
"
6
7
#include <cstddef>
// for size_t
8
#include <iostream>
// for cout, ostream
9
10
class
PHObject
;
11
12
class
SvtxTrackMap_v1
:
public
SvtxTrackMap
13
{
14
public
:
15
SvtxTrackMap_v1
();
16
SvtxTrackMap_v1
(
const
SvtxTrackMap_v1
& trackmap);
17
SvtxTrackMap_v1
&
operator=
(
const
SvtxTrackMap_v1
& trackmap);
18
~SvtxTrackMap_v1
()
override
;
19
20
void
identify
(std::ostream& os = std::cout)
const override
;
21
void
Reset
()
override
;
22
int
isValid
()
const override
{
return
1; }
23
PHObject
*
CloneMe
()
const override
{
return
new
SvtxTrackMap_v1
(*
this
); }
24
25
bool
empty
()
const override
{
return
_map
.empty(); }
26
size_t
size
()
const override
{
return
_map
.size(); }
27
size_t
count
(
unsigned
int
idkey)
const override
{
return
_map
.count(idkey); }
28
void
clear
()
override
{
Reset
(); }
29
30
const
SvtxTrack
*
get
(
unsigned
int
idkey)
const
override
;
31
SvtxTrack
*
get
(
unsigned
int
idkey)
override
;
32
SvtxTrack
*
insert
(
const
SvtxTrack
*
track
)
override
;
33
size_t
erase
(
unsigned
int
idkey)
override
34
{
35
delete
_map
[idkey];
36
return
_map
.erase(idkey);
37
}
38
39
ConstIter
begin
()
const override
{
return
_map
.begin(); }
40
ConstIter
find
(
unsigned
int
idkey)
const override
{
return
_map
.find(idkey); }
41
ConstIter
end
()
const override
{
return
_map
.end(); }
42
43
Iter
begin
()
override
{
return
_map
.begin(); }
44
Iter
find
(
unsigned
int
idkey)
override
{
return
_map
.find(idkey); }
45
Iter
end
()
override
{
return
_map
.end(); }
46
47
private
:
48
TrackMap
_map
;
49
50
ClassDefOverride
(
SvtxTrackMap_v1
, 1);
51
};
52
53
#endif
coresoftware
blob
master
offline
packages
trackbase_historic
SvtxTrackMap_v1.h
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:37
using
1.8.2 with
ECCE GitHub integration