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
JetInput.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file JetInput.h
1
#ifndef JETBASE_JETINPUT_H
2
#define JETBASE_JETINPUT_H
3
4
#include "
Jet.h
"
5
6
#include <iostream>
7
#include <vector>
8
9
class
PHCompositeNode
;
10
11
class
JetInput
12
{
13
public
:
14
virtual
~JetInput
() {}
15
16
virtual
void
identify
(std::ostream&
os
= std::cout)
17
{
18
os
<<
"JetInput base class"
<< std::endl;
19
}
20
21
virtual
Jet::SRC
get_src
() {
return
Jet::VOID
; }
22
23
virtual
std::vector<Jet*>
get_input
(
PHCompositeNode
*
/*topNode*/
)
24
{
25
return
std::vector<Jet*>();
26
}
27
virtual
int
Verbosity
()
const
{
return
m_Verbosity
; }
28
virtual
void
Verbosity
(
int
i
) {
m_Verbosity
=
i
; }
29
30
protected
:
31
JetInput
()
32
:
m_Verbosity
(0)
33
{
34
}
35
36
private
:
37
int
m_Verbosity
;
38
};
39
40
#endif
coresoftware
blob
master
offline
packages
jetbase
JetInput.h
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:18:06
using
1.8.2 with
sPHENIX GitHub integration