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
BaseTruthEval.cc
BaseTruthEval.h
CaloEvalStack.cc
CaloEvalStack.h
CaloEvaluator.cc
CaloEvaluator.h
CaloRawClusterEval.cc
CaloRawClusterEval.h
CaloRawTowerEval.cc
CaloRawTowerEval.h
CaloTruthEval.cc
CaloTruthEval.h
compressor_generator.h
DSTCompressor.h
DSTEmulator.cc
DSTEmulator.h
EventEvaluator.cc
EventEvaluator.h
JetEvalStack.cc
JetEvalStack.h
JetEvaluator.cc
JetEvaluator.h
JetRecoEval.cc
JetRecoEval.h
JetTruthEval.cc
JetTruthEval.h
MomentumEvaluator.cc
MomentumEvaluator.h
PHG4DstCompressReco.cc
PHG4DstCompressReco.h
PHG4DSTReader.cc
PHG4DSTReader.h
SvtxClusterEval.cc
SvtxClusterEval.h
SvtxEvalStack.cc
SvtxEvalStack.h
SvtxEvaluator.cc
SvtxEvaluator.h
SvtxHitEval.cc
SvtxHitEval.h
SvtxTrackEval.cc
SvtxTrackEval.h
SvtxTruthEval.cc
SvtxTruthEval.h
SvtxVertexEval.cc
SvtxVertexEval.h
TrackEvaluation.cc
TrackEvaluation.h
TrackEvaluationContainer.h
TrackEvaluationContainerLinkDef.h
TrackEvaluationContainerv1.cc
TrackEvaluationContainerv1.h
TrackEvaluationContainerv1LinkDef.h
g4gdml
g4histos
g4intt
g4jets
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
JetEvalStack.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file JetEvalStack.h
1
#ifndef G4EVAL_JETEVALSTACK_H
2
#define G4EVAL_JETEVALSTACK_H
3
4
#include "
JetRecoEval.h
"
5
6
#include <string>
7
8
class
CaloEvalStack
;
9
class
JetTruthEval
;
10
class
SvtxEvalStack
;
11
class
PHCompositeNode
;
12
13
// This user class provides pointers to the
14
// full set of jet evaluators and
15
// protects the user from future introduction
16
// of new eval heirachies (new eval objects can
17
// be introduced without rewrites)
18
19
class
JetEvalStack
20
{
21
public
:
22
JetEvalStack
(
PHCompositeNode
* topNode,
23
const
std::string& recojetname,
24
const
std::string& truthjetname);
25
virtual
~JetEvalStack
() {}
26
27
void
next_event
(
PHCompositeNode
* topNode);
28
void
do_caching
(
bool
do_cache) {
_recoeval
.
do_caching
(do_cache); }
29
void
set_strict
(
bool
strict) {
_recoeval
.
set_strict
(strict); }
30
void
set_verbosity
(
int
verbosity) {
_recoeval
.
set_verbosity
(verbosity); }
31
32
JetRecoEval
*
get_reco_eval
() {
return
&
_recoeval
; }
33
JetTruthEval
*
get_truth_eval
() {
return
_recoeval
.
get_truth_eval
(); }
34
35
SvtxEvalStack
*
get_stvx_eval_stack
() {
return
_recoeval
.
get_svtx_eval_stack
(); }
36
CaloEvalStack
*
get_cemc_eval_stack
() {
return
_recoeval
.
get_cemc_eval_stack
(); }
37
CaloEvalStack
*
get_hcalin_eval_stack
() {
return
_recoeval
.
get_hcalin_eval_stack
(); }
38
CaloEvalStack
*
get_hcalout_eval_stack
() {
return
_recoeval
.
get_hcalout_eval_stack
(); }
39
CaloEvalStack
*
get_femc_eval_stack
() {
return
_recoeval
.
get_femc_eval_stack
(); }
40
CaloEvalStack
*
get_fhcal_eval_stack
() {
return
_recoeval
.
get_fhcal_eval_stack
(); }
41
42
private
:
43
JetRecoEval
_recoeval
;
44
};
45
46
#endif // G4EVAL_JETEVALSTACK_H
coresoftware
blob
master
simulation
g4simulation
g4eval
JetEvalStack.h
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:42
using
1.8.2 with
ECCE GitHub integration