#include <JetDefinition.hh>
Public Member Functions | |
| JetDefinition (JetFinder jet_finder=kt_algorithm, double R=1.0, Strategy strategy=Best) | |
| constructor that to fully specify a jet-definition (together with information about how algorithically to run it). | |
| JetFinder | jet_finder () const |
| double | R () const |
| Strategy | strategy () const |
Private Attributes | |
| JetFinder | _jet_finder |
| double | _Rparam |
| Strategy | _strategy |
Definition at line 83 of file JetDefinition.hh.
|
||||||||||||||||
|
constructor that to fully specify a jet-definition (together with information about how algorithically to run it). [at some point might recombination schemes be added here?] Definition at line 91 of file JetDefinition.hh. References fastjet::pi. 00093 : 00094 _jet_finder(jet_finder), _Rparam(R), _strategy(strategy) { 00095 // the largest sensible value for R 00096 assert(_Rparam <= 0.5*pi); 00097 };
|
|
|
Definition at line 101 of file JetDefinition.hh. Referenced by fastjet::ClusterSequence::_initialise_and_run(). 00101 {return _jet_finder ;};
|
|
|
Definition at line 102 of file JetDefinition.hh. Referenced by fastjet::ClusterSequenceActiveArea::_initialise_and_run_AA(). 00102 {return _Rparam ;};
|
|
|
Definition at line 103 of file JetDefinition.hh. 00103 {return _strategy ;};
|
|
|
Definition at line 103 of file JetDefinition.hh. |
|
|
Definition at line 107 of file JetDefinition.hh. |
|
|
Definition at line 108 of file JetDefinition.hh. |
1.4.2