CMS 3D CMS Logo

Public Member Functions

FsmwLinearizationPointFinder Class Reference

#include <FsmwLinearizationPointFinder.h>

Inheritance diagram for FsmwLinearizationPointFinder:
CrossingPtBasedLinearizationPointFinder LinearizationPointFinder DefaultLinearizationPointFinder

List of all members.

Public Member Functions

virtual
FsmwLinearizationPointFinder
clone () const
 FsmwLinearizationPointFinder (signed int n_pairs=250, float weight_exp=-2., float fraction=.5, float cut=10, int no_weight_above=10)
 FsmwLinearizationPointFinder (const RecTracksDistanceMatrix *m, signed int n_pairs=250, float weight_exp=-2., float fraction=.5, float cut=10, int no_weight_above=10)

Detailed Description

A linearization point finder. It works the following way: 1. Calculate in an optimal way 'n_pairs' different crossing points. Optimal in this context means the following: a. Try to use as many different tracks as possible; avoid using the same track all the time. b. Use the most energetic tracks. c. Try not to group the most energetic tracks together. Try to group more energetic tracks with less energetic tracks. We assume collimated bundles here, so this is why. d. Perform optimally. Do not sort more tracks (by total energy, see b) than necessary. e. If n_pairs >= (number of all possible combinations), do not leave any combinations out. ( a. and e. are almost but not entirely fulfilled in the current impl ) 2. Do a Fsmw on the n points.

Definition at line 23 of file FsmwLinearizationPointFinder.h.


Constructor & Destructor Documentation

FsmwLinearizationPointFinder::FsmwLinearizationPointFinder ( signed int  n_pairs = 250,
float  weight_exp = -2.,
float  fraction = .5,
float  cut = 10,
int  no_weight_above = 10 
)
Parameters:
n_pairshow many track pairs are considered The weight is defined as w = ( d + cut )^weight_exp Where d and cut are given in microns.
weight_expexponent of the weight function
cutcut parameter of the weight function
fractionFraction that is considered

Definition at line 4 of file FsmwLinearizationPointFinder.cc.

Referenced by clone().

FsmwLinearizationPointFinder::FsmwLinearizationPointFinder ( const RecTracksDistanceMatrix m,
signed int  n_pairs = 250,
float  weight_exp = -2.,
float  fraction = .5,
float  cut = 10,
int  no_weight_above = 10 
)

Definition at line 9 of file FsmwLinearizationPointFinder.cc.


Member Function Documentation

FsmwLinearizationPointFinder * FsmwLinearizationPointFinder::clone ( ) const [virtual]

Clone method

Reimplemented from CrossingPtBasedLinearizationPointFinder.

Definition at line 16 of file FsmwLinearizationPointFinder.cc.

References FsmwLinearizationPointFinder().

{
  return new FsmwLinearizationPointFinder ( * this );
}