CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Private Attributes
Chi2MeasurementEstimatorBase Class Referenceabstract

#include <Chi2MeasurementEstimatorBase.h>

Inheritance diagram for Chi2MeasurementEstimatorBase:
MeasurementEstimator Chi2MeasurementEstimator Chi2Strip1DEstimator Chi2Switching1DEstimator EtaPhiEstimator GsfChi2MeasurementEstimator MRHChi2MeasurementEstimator MuonChi2MeasurementEstimator

Public Member Functions

 Chi2MeasurementEstimatorBase (double maxChi2, double nSigma=3., float maxDisp=std::numeric_limits< float >::max())
 
template<typename... Args>
 Chi2MeasurementEstimatorBase (double maxChi2, double nSigma, float maxDisp, Args &&...args)
 
double chiSquaredCut () const
 
std::pair< bool, double > estimate (const TrajectoryStateOnSurface &ts, const TrackingRecHit &) const override=0
 
bool estimate (const TrajectoryStateOnSurface &ts, const Plane &plane) const final
 
Local2DVector maximalLocalDisplacement (const TrajectoryStateOnSurface &ts, const Plane &plane) const final
 
double nSigmaCut () const
 
- Public Member Functions inherited from MeasurementEstimator
virtual MeasurementEstimatorclone () const =0
 
float maxSagitta () const
 
 MeasurementEstimator ()
 
 MeasurementEstimator (float maxSag, float minToll, float mpt)
 
float minPt2ForHitRecoveryInGluedDet () const
 
float minTolerance2 () const
 
virtual bool preFilter (const TrajectoryStateOnSurface &, OpaquePayload const &) const
 
virtual ~MeasurementEstimator ()
 

Protected Member Functions

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

Private Attributes

const double theMaxChi2
 
const float theMaxDisplacement
 
const double theNSigma
 

Additional Inherited Members

- Public Types inherited from MeasurementEstimator
using HitReturnType = std::pair< bool, double >
 
using Local2DVector = Vector2DBase< float, LocalTag >
 
using SurfaceReturnType = bool
 

Detailed Description

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

Author
todorov, cerati

Definition at line 14 of file Chi2MeasurementEstimatorBase.h.

Constructor & Destructor Documentation

Chi2MeasurementEstimatorBase::Chi2MeasurementEstimatorBase ( double  maxChi2,
double  nSigma = 3.,
float  maxDisp = std::numeric_limits<float>::max() 
)
inlineexplicit

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 Plane and maximalLocalDisplacement.

Definition at line 22 of file Chi2MeasurementEstimatorBase.h.

template<typename... Args>
Chi2MeasurementEstimatorBase::Chi2MeasurementEstimatorBase ( double  maxChi2,
double  nSigma,
float  maxDisp,
Args &&...  args 
)
inline

Member Function Documentation

double Chi2MeasurementEstimatorBase::chiSquaredCut ( ) const
inline

Definition at line 42 of file Chi2MeasurementEstimatorBase.h.

References theMaxChi2.

Referenced by returnIt().

std::pair<bool, double> Chi2MeasurementEstimatorBase::estimate ( const TrajectoryStateOnSurface ts,
const TrackingRecHit hit 
) const
overridepure 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 MuonChi2MeasurementEstimator, Chi2Switching1DEstimator, GsfChi2MeasurementEstimator, EtaPhiEstimator, MRHChi2MeasurementEstimator, Chi2Strip1DEstimator, Chi2MeasurementEstimator, and MRHChi2MeasurementEstimator.

Referenced by Chi2MeasurementEstimatorBase(), and EtaPhiEstimator::estimate().

bool Chi2MeasurementEstimatorBase::estimate ( const TrajectoryStateOnSurface ts,
const Plane plane 
) const
finalvirtual

Returns true if the TrajectoryStateOnSurface is compatible with the Plane, false otherwise. The TrajectoryStateOnSurface must be on the plane.

Implements MeasurementEstimator.

Definition at line 5 of file Chi2MeasurementEstimatorBase.cc.

References Surface::bounds(), TrajectoryStateOnSurface::hasError(), Bounds::inside(), TrajectoryStateOnSurface::localError(), TrajectoryStateOnSurface::localPosition(), nSigmaCut(), and LocalTrajectoryError::positionError().

7 {
8  if ( ts.hasError()) {
9  return plane.bounds().inside( ts.localPosition(),
11  nSigmaCut());
12  }
13  else return plane.bounds().inside(ts.localPosition());
14 }
const Bounds & bounds() const
Definition: Surface.h:120
LocalError positionError() const
virtual bool inside(const Local3DPoint &) const =0
Determine if the point is inside the bounds.
const LocalTrajectoryError & localError() const
MeasurementEstimator::Local2DVector Chi2MeasurementEstimatorBase::maximalLocalDisplacement ( const TrajectoryStateOnSurface ts,
const Plane plane 
) const
finalvirtual

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 Plane which is entirely outside of the compatibility region defined by maximalLocalDisplacement().

Implements MeasurementEstimator.

Definition at line 17 of file Chi2MeasurementEstimatorBase.cc.

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

Referenced by Chi2MeasurementEstimatorBase().

19 {
20  const float emax = theMaxDisplacement;
21  if ( ts.hasError()) {
23  return Local2DVector( std::min(emax,std::sqrt(float(le.xx())))*nSigmaCut(), std::min(emax,std::sqrt(float(le.yy())))*nSigmaCut());
24  }
25  else return Local2DVector(emax,emax);
26 }
float xx() const
Definition: LocalError.h:24
LocalError positionError() const
float yy() const
Definition: LocalError.h:26
Vector2DBase< float, LocalTag > Local2DVector
T sqrt(T t)
Definition: SSEVec.h:18
T min(T a, T b)
Definition: MathUtil.h:58
const LocalTrajectoryError & localError() const
double Chi2MeasurementEstimatorBase::nSigmaCut ( ) const
inline

Definition at line 43 of file Chi2MeasurementEstimatorBase.h.

References theNSigma.

Referenced by estimate(), and maximalLocalDisplacement().

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

Definition at line 47 of file Chi2MeasurementEstimatorBase.h.

References chiSquaredCut().

Referenced by Chi2MeasurementEstimator::estimate(), MRHChi2MeasurementEstimator::estimate(), and GsfChi2MeasurementEstimator::estimate().

47  {
48  return est > chiSquaredCut() ? HitReturnType(false,est) : HitReturnType(true,est);
49  }
std::pair< bool, double > HitReturnType

Member Data Documentation

const double Chi2MeasurementEstimatorBase::theMaxChi2
private

Definition at line 52 of file Chi2MeasurementEstimatorBase.h.

Referenced by chiSquaredCut().

const float Chi2MeasurementEstimatorBase::theMaxDisplacement
private

Definition at line 54 of file Chi2MeasurementEstimatorBase.h.

Referenced by maximalLocalDisplacement().

const double Chi2MeasurementEstimatorBase::theNSigma
private

Definition at line 53 of file Chi2MeasurementEstimatorBase.h.

Referenced by nSigmaCut().