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
FastJetAlgo.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file FastJetAlgo.h
1
#ifndef G4JET_FASTJETALGO_H
2
#define G4JET_FASTJETALGO_H
3
4
#include "
Jet.h
"
5
#include "
JetAlgo.h
"
6
7
#include <iostream>
// for cout, ostream
8
#include <vector>
// for vector
9
10
class
FastJetAlgo
:
public
JetAlgo
11
{
12
public
:
13
FastJetAlgo
(
Jet::ALGO
algo,
float
par,
int
verbosity = 0);
14
~FastJetAlgo
()
override
{}
15
16
void
identify
(std::ostream& os = std::cout)
override
;
17
Jet::ALGO
get_algo
()
override
{
return
_algo
; }
18
float
get_par
()
override
{
return
_par
; }
19
20
void
set_do_SoftDrop
(
bool
do_SD ) {
21
_do_SD
= do_SD;
22
}
23
24
void
set_SoftDrop_beta
(
float
beta ) {
25
_SD_beta
= beta;
26
}
27
28
void
set_SoftDrop_zcut
(
float
zcut ) {
29
_SD_zcut
= zcut;
30
}
31
32
std::vector<Jet*>
get_jets
(std::vector<Jet*> particles)
override
;
33
34
private
:
35
int
_verbosity
;
36
Jet::ALGO
_algo
;
37
float
_par
;
38
39
bool
_do_SD
;
40
float
_SD_beta
;
41
float
_SD_zcut
;
42
43
};
44
45
#endif
coresoftware
blob
master
simulation
g4simulation
g4jets
FastJetAlgo.h
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:43
using
1.8.2 with
ECCE GitHub integration