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
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