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
JetInput.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file JetInput.h
1
#ifndef G4JET_JETINPUT_H
2
#define G4JET_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
():
m_Verbosity
(0) {}
32
33
private
:
34
int
m_Verbosity
;
35
};
36
37
#endif
coresoftware
blob
master
simulation
g4simulation
g4jets
JetInput.h
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:43
using
1.8.2 with
ECCE GitHub integration