CMS 3D CMS Logo

Public Member Functions | Protected Member Functions | Private Attributes

Chi2MeasurementEstimatorBase Class Reference

#include <Chi2MeasurementEstimatorBase.h>

Inheritance diagram for Chi2MeasurementEstimatorBase:
MeasurementEstimator Chi2MeasurementEstimator Chi2MeasurementEstimatorForTrackerHits Chi2Strip1DEstimator Chi2StripEstimator Chi2Switching1DEstimator Chi2SwitchingEstimator EtaPhiEstimator EtaPhiMeasurementEstimator GsfChi2MeasurementEstimator HICMeasurementEstimator MRHChi2MeasurementEstimator MuonChi2MeasurementEstimator

List of all members.

Public Member Functions

 Chi2MeasurementEstimatorBase (double maxChi2, double nSigma=3.)
double chiSquaredCut () const
virtual std::pair< bool, double > estimate (const TrajectoryStateOnSurface &ts, const TransientTrackingRecHit &) const =0
virtual bool estimate (const TrajectoryStateOnSurface &ts, const BoundPlane &plane) const
virtual Local2DVector maximalLocalDisplacement (const TrajectoryStateOnSurface &ts, const BoundPlane &plane) const
double nSigmaCut () const

Protected Member Functions

std::pair< bool, double > returnIt (double est) const

Private Attributes

double theMaxChi2
double theNSigma

Detailed Description

A base class for Chi2 -- type of Measurement Estimators. Implements common functionality. Ported from ORCA.

Date:
2007/12/19 16:44:46
Revision:
1.3
Author:
todorov, cerati

Definition at line 15 of file Chi2MeasurementEstimatorBase.h.


Constructor & Destructor Documentation

Chi2MeasurementEstimatorBase::Chi2MeasurementEstimatorBase ( double  maxChi2,
double  nSigma = 3. 
) [inline, explicit]

Construct with cuts on chi2 and nSigma. The cut on Chi2 is used to define the acceptance of RecHits. The errors of the trajectory state are multiplied by nSigma to define acceptance of BoundPlane and maximalLocalDisplacement.

Definition at line 23 of file Chi2MeasurementEstimatorBase.h.

                                                                            : 
    theMaxChi2(maxChi2), theNSigma(nSigma) {}

Member Function Documentation

double Chi2MeasurementEstimatorBase::chiSquaredCut ( ) const [inline]

Definition at line 36 of file Chi2MeasurementEstimatorBase.h.

References theMaxChi2.

Referenced by returnIt().

{return theMaxChi2;}
virtual std::pair<bool, double> Chi2MeasurementEstimatorBase::estimate ( const TrajectoryStateOnSurface ts,
const TransientTrackingRecHit hit 
) const [pure virtual]

Returns pair( true, value) if the TrajectoryStateOnSurface is compatible with the RecHit, and pair( false, value) if it is not compatible. The TrajectoryStateOnSurface must be on the same Surface as the RecHit. For an estimator where there is no value computed, e.g. fixed window estimator, only the first(bool) part is of interest.

Implements MeasurementEstimator.

Implemented in HICMeasurementEstimator, HICMeasurementEstimator, EtaPhiEstimator, MuonChi2MeasurementEstimator, GsfChi2MeasurementEstimator, Chi2MeasurementEstimator, Chi2MeasurementEstimator, Chi2MeasurementEstimatorForTrackerHits, Chi2Strip1DEstimator, Chi2StripEstimator, Chi2Switching1DEstimator, Chi2SwitchingEstimator, EtaPhiMeasurementEstimator, and MRHChi2MeasurementEstimator.

Referenced by EtaPhiEstimator::estimate().

bool Chi2MeasurementEstimatorBase::estimate ( const TrajectoryStateOnSurface ts,
const BoundPlane plane 
) const [virtual]
MeasurementEstimator::Local2DVector Chi2MeasurementEstimatorBase::maximalLocalDisplacement ( const TrajectoryStateOnSurface ts,
const BoundPlane plane 
) const [virtual]

Returns the size of the compatibility region around the local position of the TrajectoryStateOnSurface along the directions of local x and y axis. The TrajectoryStateOnSurface must be on the plane. This method allows to limit the search for compatible detectors or RecHits. The MeasurementEstimator should not return "true" for any RecHit or BoundPlane which is entirely outside of the compatibility region defined by maximalLocalDisplacement().

Reimplemented from MeasurementEstimator.

Reimplemented in EtaPhiMeasurementEstimator.

Definition at line 17 of file Chi2MeasurementEstimatorBase.cc.

References TrajectoryStateOnSurface::hasError(), asciidump::le, TrajectoryStateOnSurface::localError(), nSigmaCut(), LocalTrajectoryError::positionError(), mathSSE::sqrt(), LocalError::xx(), and LocalError::yy().

{
  if ( ts.hasError()) {
    LocalError le = ts.localError().positionError();
    return Local2DVector( sqrt(le.xx())*nSigmaCut(), sqrt(le.yy())*nSigmaCut());
  }
  else return Local2DVector(0,0);
}
double Chi2MeasurementEstimatorBase::nSigmaCut ( ) const [inline]

Definition at line 37 of file Chi2MeasurementEstimatorBase.h.

References theNSigma.

Referenced by estimate(), and maximalLocalDisplacement().

{return theNSigma;}
std::pair<bool,double> Chi2MeasurementEstimatorBase::returnIt ( double  est) const [inline, protected]

Member Data Documentation

Reimplemented in HICMeasurementEstimator.

Definition at line 46 of file Chi2MeasurementEstimatorBase.h.

Referenced by chiSquaredCut().

Reimplemented in HICMeasurementEstimator.

Definition at line 47 of file Chi2MeasurementEstimatorBase.h.

Referenced by nSigmaCut().