SISCone  2.0.6
Public Member Functions | Public Attributes | List of all members
siscone::Csplit_merge Class Reference

Class used to split and merge jets. More...

#include <split_merge.h>

Inheritance diagram for siscone::Csplit_merge:
Inheritance graph
[legend]
Collaboration diagram for siscone::Csplit_merge:
Collaboration graph
[legend]

Public Member Functions

 Csplit_merge ()
 default ctor
 
 ~Csplit_merge ()
 default dtor
 
int init (std::vector< Cmomentum > &_particles, std::vector< Cmomentum > *protocones, double R2, double ptmin=0.0)
 initialisation function More...
 
int init_particles (std::vector< Cmomentum > &_particles)
 initialisation function for particle list More...
 
int init_pleft ()
 build initial list of left particles More...
 
int set_pt_weighted_splitting (bool _use_pt_weighted_splitting)
 use a pt-dependent boundary for splitting When called with true, the criterium for splitting two protojets will be to compare D1^2/kt1^2 vs. More...
 
int partial_clear ()
 partial clearance
 
int full_clear ()
 full clearance
 
int merge_collinear_and_remove_soft ()
 build the list 'p_uncol_hard' from p_remain by clustering collinear particles and removing particles softer than stable_cone_soft_pt2_cutoff note that thins in only used for stable-cone detection so the parent_index field is unnecessary
 
int add_protocones (std::vector< Cmomentum > *protocones, double R2, double ptmin=0.0)
 add a list of protocones More...
 
int perform (double overlap_tshold, double ptmin=0.0)
 really do the splitting and merging At the end, the vector jets is filled with the jets found. More...
 
int save_contents (FILE *flux)
 save final jets More...
 
int show ()
 show jets/candidates status
 

Public Attributes

int n
 number of particles
 
std::vector< Cmomentumparticles
 list of particles
 
std::vector< double > pt
 list of particles' pt
 
int n_left
 numer of particles that does not belong to any jet
 
std::vector< Cmomentump_remain
 list of particles remaining to deal with
 
std::vector< Cmomentump_uncol_hard
 list of particles remaining with collinear clustering
 
int n_pass
 index of the run
 
double most_ambiguous_split
 minimal difference in squared distance between a particle and two overlapping protojets when doing a split (useful when testing approx. More...
 
std::vector< Cjetjets
 list of jets
 
int * indices
 maximal size array for indices works
 
int idx_size
 number of elements in indices1
 
bool merge_identical_protocones
 The following flag indicates that identical protocones are to be merged automatically each time around the split-merge loop and before anything else happens. More...
 
Csplit_merge_ptcomparison ptcomparison
 member used for detailed comparisons of pt's
 
double SM_var2_hardest_cut_off
 stop split–merge when the SM_var of the hardest protojet is below this cut-off. More...
 
double stable_cone_soft_pt2_cutoff
 pt cutoff for the particles to put in p_uncol_hard this is meant to allow removing soft particles in the stable-cone search. More...
 

Detailed Description

Class used to split and merge jets.

Definition at line 175 of file split_merge.h.

Member Function Documentation

◆ add_protocones()

int siscone::Csplit_merge::add_protocones ( std::vector< Cmomentum > *  protocones,
double  R2,
double  ptmin = 0.0 
)

add a list of protocones

Parameters
protoconeslist of protocones (initial jet candidates)
R2cone radius (squared)
ptminminimal pT allowed for jets
Returns
0 on success, 1 on error

Definition at line 457 of file split_merge.cpp.

References siscone::Cjet::contents, siscone::Cmomentum::eta, siscone::Cmomentum::index, siscone::Cjet::n, siscone::Cmomentum::parent_index, siscone::Cmomentum::phi, siscone::Cjet::pt_tilde, siscone::Cjet::range, twopi, and siscone::Cjet::v.

◆ init()

int siscone::Csplit_merge::init ( std::vector< Cmomentum > &  _particles,
std::vector< Cmomentum > *  protocones,
double  R2,
double  ptmin = 0.0 
)

initialisation function

Parameters
_particleslist of particles
protoconeslist of protocones (initial jet candidates)
R2cone radius (squared)
ptminminimal pT allowed for jets
Returns
0 on success, 1 on error

Definition at line 262 of file split_merge.cpp.

◆ init_particles()

int siscone::Csplit_merge::init_particles ( std::vector< Cmomentum > &  _particles)

initialisation function for particle list

Parameters
_particleslist of particles
Returns
0 on success, 1 on error

Definition at line 271 of file split_merge.cpp.

◆ init_pleft()

int siscone::Csplit_merge::init_pleft ( )

build initial list of left particles

for the Ceta_phi_range static member!

for the Ceta_phi_range static member!

Definition at line 300 of file split_merge.cpp.

References siscone::Ceta_phi_range::eta_max, and siscone::Ceta_phi_range::eta_min.

◆ perform()

int siscone::Csplit_merge::perform ( double  overlap_tshold,
double  ptmin = 0.0 
)

really do the splitting and merging At the end, the vector jets is filled with the jets found.

the 'contents' field of each jets contains the indices of the particles included in that jet.

Parameters
overlap_tsholdthreshold for splitting/merging transition
ptminminimal pT allowed for jets
Returns
the number of jets is returned

Definition at line 567 of file split_merge.cpp.

◆ save_contents()

int siscone::Csplit_merge::save_contents ( FILE *  flux)

save final jets

Parameters
fluxstream to save the jet contentss

Definition at line 680 of file split_merge.cpp.

References siscone::Cmomentum::build_etaphi(), siscone::Cjet::contents, siscone::Cmomentum::eta, siscone::Cjet::n, siscone::Cmomentum::perp(), siscone::Cmomentum::phi, and siscone::Cjet::v.

◆ set_pt_weighted_splitting()

int siscone::Csplit_merge::set_pt_weighted_splitting ( bool  _use_pt_weighted_splitting)
inline

use a pt-dependent boundary for splitting When called with true, the criterium for splitting two protojets will be to compare D1^2/kt1^2 vs.

D2^2/kt2^2, the (anti-)kt-weighted distance instead of the plain distance D1^2 vs. D2^2. This can be set in order to produce more circular hard jets, with the same underlying philosophy as for the anti-kt algorithm. We thus expect a behaviour closer to the IterativeCone one. By default, we use the standard D1^2 vs. D2^2 comparison and this function is not called.

Definition at line 221 of file split_merge.h.

Member Data Documentation

◆ merge_identical_protocones

bool siscone::Csplit_merge::merge_identical_protocones

The following flag indicates that identical protocones are to be merged automatically each time around the split-merge loop and before anything else happens.

This flag is only effective if ALLOW_MERGE_IDENTICAL_PROTOCONES is set in 'defines.h' Note that this lead to infrared-unsafety so it is disabled by default

Definition at line 311 of file split_merge.h.

◆ most_ambiguous_split

double siscone::Csplit_merge::most_ambiguous_split

minimal difference in squared distance between a particle and two overlapping protojets when doing a split (useful when testing approx.

collinear safety)

Definition at line 294 of file split_merge.h.

◆ SM_var2_hardest_cut_off

double siscone::Csplit_merge::SM_var2_hardest_cut_off

stop split–merge when the SM_var of the hardest protojet is below this cut-off.

This is not collinear-safe so you should not use this variable unless you really know what you are doing Note that the cut-off is set on the variable squared.

Definition at line 321 of file split_merge.h.

◆ stable_cone_soft_pt2_cutoff

double siscone::Csplit_merge::stable_cone_soft_pt2_cutoff

pt cutoff for the particles to put in p_uncol_hard this is meant to allow removing soft particles in the stable-cone search.

Definition at line 326 of file split_merge.h.


The documentation for this class was generated from the following files:
The SISCone project has been developed by Gavin Salam and Gregory Soyez
Documentation generated for SISCone by  Doxygen 1.8.13