JetDefinition::Recombiner Class Reference

An abstract base class that will provide the recombination scheme facilities and/or allow a user to extend these facilities. More...

#include <JetDefinition.hh>

Inheritance diagram for JetDefinition::Recombiner:
Inheritance graph
[legend]

List of all members.

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 &) 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.

Detailed Description

An abstract base class that will provide the recombination scheme facilities and/or allow a user to extend these facilities.

Definition at line 323 of file JetDefinition.hh.


Constructor & Destructor Documentation

virtual JetDefinition::Recombiner::~Recombiner (  )  [inline, virtual]

a destructor to be replaced if necessary in derived classes...

Definition at line 338 of file JetDefinition.hh.

00338 {};


Member Function Documentation

virtual std::string JetDefinition::Recombiner::description (  )  const [pure virtual]

return a textual description of the recombination scheme implemented here

Implemented in JetDefinition::DefaultRecombiner.

Referenced by JetDefinition::description().

void JetDefinition::Recombiner::plus_equal ( PseudoJet pa,
const PseudoJet pb 
) const [inline]

pa += pb in the given recombination scheme.

Not virtual -- the user should have no reason to want to redefine this!

Definition at line 342 of file JetDefinition.hh.

References recombine().

00342                                                                        {
00343       // put result in a temporary location in case the recombiner
00344       // does something funny (ours doesn't, but who knows about the
00345       // user's)
00346       PseudoJet pres; 
00347       recombine(pa,pb,pres);
00348       pa = pres;
00349     }

virtual void JetDefinition::Recombiner::preprocess ( PseudoJet  )  const [inline, virtual]

routine called to preprocess each input jet (to make all input jets compatible with the scheme requirements (e.g.

massless).

Reimplemented in JetDefinition::DefaultRecombiner.

Definition at line 335 of file JetDefinition.hh.

00335 {};

virtual void JetDefinition::Recombiner::recombine ( const PseudoJet pa,
const PseudoJet pb,
PseudoJet pab 
) const [pure virtual]

recombine pa and pb and put result into pab

Implemented in JetDefinition::DefaultRecombiner.

Referenced by plus_equal().


The documentation for this class was generated from the following file:

Generated on 26 Feb 2010 for fastjet by  doxygen 1.6.1