//STARTHEADER
// $Id$
//
// Copyright (c) 2005-2011, Matteo Cacciari, Gavin P. Salam and Gregory Soyez
//
//----------------------------------------------------------------------
// This file is part of FastJet.
//
// FastJet is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// The algorithms that underlie FastJet have required considerable
// development and are described in hep-ph/0512210. If you use
// FastJet as part of work towards a scientific publication, please
// include a citation to the FastJet paper.
//
// FastJet is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with FastJet. If not, see .
//----------------------------------------------------------------------
//ENDHEADER
#include "fastjet/tools/Pruner.hh"
#include "fastjet/ClusterSequenceActiveAreaExplicitGhosts.hh"
#include "fastjet/Selector.hh"
#include
#include
#include
#include
using namespace std;
FASTJET_BEGIN_NAMESPACE // defined in fastjet/internal/base.hh
//----------------------------------------------------------------------
// class Pruner
//----------------------------------------------------------------------
//----------------------------------------------------------------------
// alternative (dynamic) ctor
// \param jet_def the jet definition for the internal clustering
// \param zcut_dyn dynamic pt-fraction cut in the pruning
// \param Rcut_dyn dynamic angular distance cut in the pruning
Pruner::Pruner(const JetDefinition &jet_def,
FunctionOfPseudoJet *zcut_dyn,
FunctionOfPseudoJet *Rcut_dyn)
: _jet_def(jet_def), _zcut(0), _Rcut_factor(0),
_zcut_dyn(zcut_dyn), _Rcut_dyn(Rcut_dyn), _get_recombiner_from_jet(false) {
assert(_zcut_dyn != 0 && _Rcut_dyn != 0);
}
//----------------------------------------------------------------------
// action on a single jet
PseudoJet Pruner::result(const PseudoJet &jet) const{
// pruning can only be applied to jets that have constituents
if (!jet.has_constituents()){
throw Error("Pruner: trying to apply the Pruner transformer to a jet that has no constituents");
}
// if the jet has area support and there are explicit ghosts, we can
// transfer that support to the internal re-clustering
bool do_areas = jet.has_area() && _check_explicit_ghosts(jet);
// build the pruning plugin
double Rcut = (_Rcut_dyn) ? (*_Rcut_dyn)(jet) : _Rcut_factor * 2.0*jet.m()/jet.perp();
double zcut = (_zcut_dyn) ? (*_zcut_dyn)(jet) : _zcut;
PruningPlugin * pruning_plugin;
// for some constructors, we get the recombiner from the
// input jet -- some acrobatics are needed (see plans for FJ3.1
// for a hopefully better solution).
if (_get_recombiner_from_jet) {
const JetDefinition::Recombiner * common_recombiner =
_get_common_recombiner(jet);
if (common_recombiner) {
JetDefinition jet_def = _jet_def;
if (typeid(*common_recombiner) == typeid(JetDefinition::DefaultRecombiner)) {
RecombinationScheme scheme =
static_cast(common_recombiner)->scheme();
jet_def.set_recombination_scheme(scheme);
} else {
jet_def.set_recombiner(common_recombiner);
}
pruning_plugin = new PruningPlugin(jet_def, zcut, Rcut);
} else {
// if there wasn't a common recombiner, we just use the default
// recombiner that was in _jet_def
pruning_plugin = new PruningPlugin(_jet_def, zcut, Rcut);
}
} else {
pruning_plugin = new PruningPlugin(_jet_def, zcut, Rcut);
}
// now recluster the constituents of the jet with that plugin
JetDefinition internal_jet_def(pruning_plugin);
// flag the plugin for automatic deletion _before_ we make
// copies (so that as long as the copies are also present
// it doesn't get deleted).
internal_jet_def.delete_plugin_when_unused();
ClusterSequence * cs;
if (do_areas){
vector particles, ghosts;
SelectorIsPureGhost().sift(jet.constituents(), ghosts, particles);
// determine the ghost area from the 1st ghost (if none, any value
// will do, as the area will be 0 and subtraction will have
// no effect!)
double ghost_area = (ghosts.size()) ? ghosts[0].area() : 0.01;
cs = new ClusterSequenceActiveAreaExplicitGhosts(particles, internal_jet_def,
ghosts, ghost_area);
} else {
cs = new ClusterSequence(jet.constituents(), internal_jet_def);
}
PseudoJet result_local = SelectorNHardest(1)(cs->inclusive_jets())[0];
PrunerStructure * s = new PrunerStructure(result_local);
result_local.set_structure_shared_ptr(SharedPtr(s));
// make sure things remain persistent -- i.e. tell the jet definition
// and the cluster sequence that it is their responsibility to clean
// up memory once the "result" reaches the end of its life in the user's
// code. (The CS deletes itself when the result goes out of scope and
// that also triggers deletion of the plugin)
cs->delete_self_when_unused();
return result_local;
}
// check if the jet has explicit_ghosts (knowing that there is an
// area support)
bool Pruner::_check_explicit_ghosts(const PseudoJet &jet) const{
// if the jet comes from a Clustering check explicit ghosts in that
// clustering
if (jet.has_associated_cluster_sequence())
return jet.validated_csab()->has_explicit_ghosts();
// if the jet has pieces, recurse in the pieces
if (jet.has_pieces()){
vector pieces = jet.pieces();
for (unsigned int i=0;ijet_def().recombiner();
// if the jet has pieces, recurse in the pieces
if (jet.has_pieces()){
vector pieces = jet.pieces();
if (pieces.size() == 0) return 0;
const JetDefinition::Recombiner * reco = _get_common_recombiner(pieces[0]);
for (unsigned int i=1;idescription() << ")"
<< ", dynamic Rcut (" << _Rcut_dyn->description() << ")";
} else {
oss << ", zcut = " << _zcut
<< ", Rcut_factor = " << _Rcut_factor;
}
return oss.str();
}
//----------------------------------------------------------------------
// class PrunerStructure
//----------------------------------------------------------------------
// return the other jets that may have been found along with the
// result of the pruning
// The resulting vector is sorted in pt
vector PrunerStructure::extra_jets() const{
return sorted_by_pt((!SelectorNHardest(1))(validated_cs()->inclusive_jets()));;
}
//----------------------------------------------------------------------
// class PruningRecombiner
//----------------------------------------------------------------------
// decide whether to recombine things or not
void PruningRecombiner::recombine(const PseudoJet &pa,
const PseudoJet &pb,
PseudoJet &pab) const{
PseudoJet p;
_recombiner->recombine(pa, pb, p);
// if the 2 particles are close enough, do the recombination
if (pa.squared_distance(pb)<=_Rcut2){
pab=p; return;
}
double pt2a = pa.perp2();
double pt2b = pb.perp2();
// check which is the softest
if (pt2a < pt2b){
if (pt2a<_zcut2*p.perp2()){
pab = pb; _rejected.push_back(pa.cluster_hist_index());
} else {
pab = p;
}
} else {
if (pt2b<_zcut2*p.perp2()) {
pab = pa; _rejected.push_back(pb.cluster_hist_index());
} else {
pab = p;
}
}
}
// description
string PruningRecombiner::description() const{
ostringstream oss;
oss << "Pruning recombiner with zcut = " << sqrt(_zcut2)
<< ", Rcut = " << sqrt(_Rcut2)
<< ", and underlying recombiner = " << _recombiner->description();
return oss.str();
}
//----------------------------------------------------------------------
// class PruningPlugin
//----------------------------------------------------------------------
// the actual clustering work for the plugin
void PruningPlugin::run_clustering(ClusterSequence &input_cs) const{
// declare a pruning recombiner
PruningRecombiner pruning_recombiner(_zcut, _Rcut, _jet_def.recombiner());
JetDefinition jet_def = _jet_def;
jet_def.set_recombiner(&pruning_recombiner);
// cluster the particles using that recombiner
ClusterSequence internal_cs(input_cs.jets(), jet_def);
const vector & internal_hist = internal_cs.history();
// transfer the list of "childless" elements into a bool vector
vector kept(internal_hist.size(), true);
const vector &pr_rej = pruning_recombiner.rejected();
for (unsigned int i=0;i internal2input(internal_hist.size());
for (unsigned int i=0; i