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
simulation
g4simulation
EICPhysicsList
g4bbc
g4calo
g4centrality
g4decayer
g4detectors
g4epd
g4eval
g4gdml
g4histos
g4intt
g4jets
ClusterJetInput.cc
ClusterJetInput.h
FastJetAlgo.cc
FastJetAlgo.h
Jet.cc
Jet.h
JetAlgo.h
JetHepMCLoader.cc
JetHepMCLoader.h
JetInput.h
JetLinkDef.h
JetMap.cc
JetMap.h
JetMapLinkDef.h
JetMapv1.cc
JetMapv1.h
JetMapv1LinkDef.h
JetReco.cc
JetReco.h
Jetv1.cc
Jetv1.h
Jetv1LinkDef.h
TowerJetInput.cc
TowerJetInput.h
TrackJetInput.cc
TrackJetInput.h
TruthJetInput.cc
TruthJetInput.h
g4main
g4micromegas
g4mvtx
g4tpc
g4trackfastsim
g4vertex
tpcresponse
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
JetReco.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file JetReco.h
1
#ifndef G4JET_JETRECO_H
2
#define G4JET_JETRECO_H
3
4
//===========================================================
8
//===========================================================
9
10
// PHENIX includes
11
#include <
fun4all/SubsysReco.h
>
12
13
// standard includes
14
#include <string>
// for string
15
#include <vector>
16
17
// forward declarations
18
class
Jet
;
19
class
JetAlgo
;
20
class
JetInput
;
21
class
PHCompositeNode
;
22
31
class
JetReco
:
public
SubsysReco
32
{
33
public
:
34
JetReco
(
const
std::string &
name
=
"JetReco"
);
35
~JetReco
()
override
;
36
37
int
Init
(
PHCompositeNode
*topNode)
override
;
38
int
InitRun
(
PHCompositeNode
*topNode)
override
;
39
int
process_event
(
PHCompositeNode
*topNode)
override
;
40
int
End
(
PHCompositeNode
*topNode)
override
;
41
42
void
add_input
(
JetInput
*input) {
_inputs
.push_back(input); }
43
void
add_algo
(
JetAlgo
*algo, std::string output)
44
{
45
_algos
.push_back(algo);
46
_outputs
.push_back(output);
47
}
48
49
void
set_algo_node
(
const
std::string &algonode) {
_algonode
= algonode; }
50
void
set_input_node
(
const
std::string &inputnode) {
_inputnode
= inputnode; }
51
52
private
:
53
int
CreateNodes
(
PHCompositeNode
*topNode);
54
void
FillJetNode
(
PHCompositeNode
*topNode,
int
ialgo, std::vector<Jet *> jets);
55
56
std::vector<JetInput *>
_inputs
;
57
std::vector<JetAlgo *>
_algos
;
58
std::string
_algonode
;
59
std::string
_inputnode
;
60
std::vector<std::string>
_outputs
;
61
};
62
63
#endif // G4JET_JETRECO_H
coresoftware
blob
master
simulation
g4simulation
g4jets
JetReco.h
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:43
using
1.8.2 with
ECCE GitHub integration