#include <JetDefinition.hh>
Inheritance diagram for fastjet::JetDefinition::Recombiner:

Public Member Functions | |
| virtual std::string | description () const =0 |
| return a textual description of the recombination scheme implemented here | |
| virtual void | recombine (const PseudoJet &pa, const PseudoJet &pb, PseudoJet &pab) const =0 |
| recombine pa and pb and put result into pab | |
| virtual void | preprocess (PseudoJet &p) const |
| routine called to preprocess each input jet (to make all input jets compatible with the scheme requirements (e.g. | |
| virtual | ~Recombiner () |
| a destructor to be replaced if necessary in derived classes... | |
| void | plus_equal (PseudoJet &pa, const PseudoJet &pb) const |
| pa += pb in the given recombination scheme. | |
Definition at line 216 of file JetDefinition.hh.
|
|
a destructor to be replaced if necessary in derived classes...
Definition at line 231 of file JetDefinition.hh. 00231 {};
|
|
|
return a textual description of the recombination scheme implemented here
Implemented in fastjet::JetDefinition::DefaultRecombiner. |
|
||||||||||||
|
pa += pb in the given recombination scheme. Not virtual -- the user should have no reason to want to redefine this! Definition at line 235 of file JetDefinition.hh. 00235 {
00236 // put result in a temporary location in case the recombiner
00237 // does something funny (ours doesn't, but who knows about the
00238 // user's)
00239 PseudoJet pres;
00240 recombine(pa,pb,pres);
00241 pa = pres;
00242 }
|
|
|
routine called to preprocess each input jet (to make all input jets compatible with the scheme requirements (e.g. massless). Reimplemented in fastjet::JetDefinition::DefaultRecombiner. Definition at line 228 of file JetDefinition.hh. 00228 {};
|
|
||||||||||||||||
|
recombine pa and pb and put result into pab
Implemented in fastjet::JetDefinition::DefaultRecombiner. |
1.4.2