Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
FastJetAlgoSub.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file FastJetAlgoSub.h
1
#ifndef JETBACKGROUND_FASTJETALGOSUB_H
2
#define JETBACKGROUND_FASTJETALGOSUB_H
3
4
#include <
jetbase/JetAlgo.h
>
5
#include <
jetbase/Jet.h
>
6
7
#include <iostream>
8
#include <vector>
9
10
class
FastJetAlgoSub
:
public
JetAlgo
11
{
12
public
:
13
FastJetAlgoSub
(
Jet::ALGO
algo,
float
par,
float
verbosity
= 0);
14
~FastJetAlgoSub
()
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
/* std::vector<Jet*> get_jets(std::vector<Jet*> particles) override; */
21
void
cluster_and_fill
(std::vector<Jet*>& part_in,
JetContainer
* jets_out)
override
;
22
23
private
:
24
int
_verbosity
;
25
Jet::ALGO
_algo
;
26
float
_par
;
27
};
28
29
#endif
coresoftware
blob
master
offline
packages
jetbackground
FastJetAlgoSub.h
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:18:06
using
1.8.2 with
sPHENIX GitHub integration