Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
Analysis Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
acts-fatras
analysis
analysis_tpc_prototype
coresoftware
blob
master
calibrations
generators
offline
database
framework
packages
CaloBase
CaloEmbedding
CaloReco
centrality
ClusterIso
compressor
decayfinder
epd
eventplaneinfo
globalvertex
Half
HFTrackEfficiency
intt
jetbackground
jetbase
ClusterJetInput.cc
ClusterJetInput.h
FastJetAlgo.cc
FastJetAlgo.h
FastJetOptions.cc
FastJetOptions.h
Jet.cc
Jet.h
JetAlgo.cc
JetAlgo.h
JetContainer.cc
JetContainer.h
JetContainerLinkDef.h
JetContainerv1.cc
JetContainerv1.h
JetContainerv1LinkDef.h
JetInput.h
JetLinkDef.h
JetMap.cc
JetMap.h
JetMapLinkDef.h
JetMapv1.cc
JetMapv1.h
JetMapv1LinkDef.h
JetProbeInput.cc
JetProbeInput.h
JetProbeMaker.cc
JetProbeMaker.h
JetReco.cc
JetReco.h
JetStructs.h
Jetv1.cc
Jetv1.h
Jetv1LinkDef.h
Jetv2.cc
Jetv2.h
Jetv2LinkDef.h
SubjetIndices.cc
SubjetIndices.h
SubjetIndicesLinkDef.h
SubjetIndicesv1.cc
SubjetIndicesv1.h
SubjetIndicesv1LinkDef.h
TowerJetInput.cc
TowerJetInput.h
TrackJetInput.cc
TrackJetInput.h
KFParticle_sPHENIX
mbd
micromegas
mvtx
NodeDump
particleflow
PHField
PHGenFitPkg
PHGeometry
QAUtils
rawtodst
ResonanceJetTagging
tpc
tpccalib
tpcdaq
TPCHitTrackDisplay
trackbase
trackbase_historic
TrackerMillepedeAlignment
TrackingDiagnostics
trackreco
trigger
vararray
QA
simulation
validation
Doxygen_Assist
g4exampledetector
GenFit
JETSCAPE
KFParticle
macros
online_distribution
OnlMon
prototype
pythia6
rcdaq
RDBC
tutorials
doxygen_mainpage.h
File Members
Examples
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
JetAlgo.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file JetAlgo.h
1
#ifndef JETBASE_JETALGO_H
2
#define JETBASE_JETALGO_H
3
4
#include "
Jet.h
"
5
6
#include <cmath>
7
8
class
JetContainer
;
9
class
JetAlgo
10
{
11
public
:
12
virtual
~JetAlgo
() {}
13
14
virtual
void
identify
(std::ostream&
os
= std::cout)
15
{
16
os
<<
"JetAlgo base class"
<< std::endl;
17
}
18
19
virtual
Jet::ALGO
get_algo
() {
return
Jet::NONE
; }
20
virtual
float
get_par
() {
return
NAN; }
21
22
// old version -- get jets to fill into JetMap
23
virtual
std::vector<Jet*>
get_jets
(std::vector<Jet*>
/* particles*/
)
// ? Why isn't this passed as a reference?
24
{
25
return
std::vector<Jet*>();
26
}
27
28
// new version -- pass JetContainer into clusterFillJets to fill it
29
virtual
void
cluster_and_fill
(std::vector<Jet*>&
/* particles*/
,
JetContainer
*
/*clones*/
)
30
{ }
31
32
virtual
std::map<Jet::PROPERTY, unsigned int>&
property_indices
();
33
34
protected
:
35
JetAlgo
() {}
36
37
private
:
38
};
39
40
#endif
coresoftware
blob
master
offline
packages
jetbase
JetAlgo.h
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:18:06
using
1.8.2 with
sPHENIX GitHub integration