CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
EtaPhiEstimator Class Reference

#include <EtaPhiEstimator.h>

Inheritance diagram for EtaPhiEstimator:
Chi2MeasurementEstimatorBase MeasurementEstimator

Public Member Functions

virtual EtaPhiEstimatorclone () const
 
virtual std::pair< bool, double > estimate (const TrajectoryStateOnSurface &tsos, const TrackingRecHit &aRecHit) const
 
 EtaPhiEstimator (double eta, double phi, const Chi2MeasurementEstimatorBase *estimator)
 
- Public Member Functions inherited from Chi2MeasurementEstimatorBase
 Chi2MeasurementEstimatorBase (double maxChi2, double nSigma=3.)
 
double chiSquaredCut () const
 
virtual bool estimate (const TrajectoryStateOnSurface &ts, const Plane &plane) const
 
virtual Local2DVector maximalLocalDisplacement (const TrajectoryStateOnSurface &ts, const Plane &plane) const
 
double nSigmaCut () const
 
- Public Member Functions inherited from MeasurementEstimator
virtual bool preFilter (const TrajectoryStateOnSurface &, OpaquePayload const &) const
 
virtual ~MeasurementEstimator ()
 

Private Attributes

const
Chi2MeasurementEstimatorBase
estimator_
 
double thedEta
 
double thedEta2
 
double thedPhi
 
double thedPhi2
 

Additional Inherited Members

- Public Types inherited from MeasurementEstimator
typedef std::pair< bool, double > HitReturnType
 
typedef Vector2DBase< float,
LocalTag
Local2DVector
 
typedef bool SurfaceReturnType
 
- Protected Member Functions inherited from Chi2MeasurementEstimatorBase
std::pair< bool, double > returnIt (double est) const
 

Detailed Description

Definition at line 5 of file EtaPhiEstimator.h.

Constructor & Destructor Documentation

EtaPhiEstimator::EtaPhiEstimator ( double  eta,
double  phi,
const Chi2MeasurementEstimatorBase estimator 
)
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 BoundPlane and maximalLocalDisplacement.

Definition at line 13 of file EtaPhiEstimator.h.

Referenced by clone().

14  :
16  estimator->nSigmaCut()),
17  estimator_(estimator),
18  thedEta(eta),
19  thedPhi(phi),
20  thedEta2(eta*eta),
22  { }
const Chi2MeasurementEstimatorBase * estimator_
Chi2MeasurementEstimatorBase(double maxChi2, double nSigma=3.)

Member Function Documentation

virtual EtaPhiEstimator* EtaPhiEstimator::clone ( void  ) const
inlinevirtual

Implements MeasurementEstimator.

Definition at line 45 of file EtaPhiEstimator.h.

References EtaPhiEstimator().

45  {
46  return new EtaPhiEstimator(*this);
47  }
EtaPhiEstimator(double eta, double phi, const Chi2MeasurementEstimatorBase *estimator)
virtual std::pair<bool,double> EtaPhiEstimator::estimate ( const TrajectoryStateOnSurface ts,
const TrackingRecHit hit 
) const
inlinevirtual

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 Chi2MeasurementEstimatorBase.

Definition at line 24 of file EtaPhiEstimator.h.

References DDVectorGetter::check(), dPhi(), Chi2MeasurementEstimatorBase::estimate(), estimator_, PV3DBase< T, PVType, FrameType >::eta(), TrajectoryStateOnSurface::globalPosition(), TrackingRecHit::globalPosition(), LogDebug, PV3DBase< T, PVType, FrameType >::phi(), thedEta2, and thedPhi2.

25  {
26 
27  std::pair<bool,double> primaryResult = estimator_->estimate(tsos,aRecHit);
28 
29  double dEta = fabs(tsos.globalPosition().eta() - aRecHit.globalPosition().eta());
30  double dPhi = deltaPhi< double > (tsos.globalPosition().phi(), aRecHit.globalPosition().phi());
31 
32  double check = (dEta*dEta)/(thedEta2) + (dPhi*dPhi)/(thedPhi2);
33 
34  LogDebug("EtaPhiMeasurementEstimator")<< " The state to compare with is \n"<< tsos
35  << " The hit position is:\n" << aRecHit.globalPosition()
36  << " deta: "<< dEta<< " dPhi: "<<dPhi<<" check: "<<check<<" primaryly: "<< primaryResult.second;
37 
38  if (check <= 1)
39  // if (dEta < thedEta && dPhi <thedPhi)
40  return std::make_pair(true, primaryResult.second);
41  else
42  return std::make_pair(false, primaryResult.second);
43  }
#define LogDebug(id)
virtual std::pair< bool, double > estimate(const TrajectoryStateOnSurface &ts, const TrackingRecHit &) const =0
const Chi2MeasurementEstimatorBase * estimator_
double dPhi(double phi1, double phi2)
Definition: JetUtil.h:30
bool check(const std::string &)

Member Data Documentation

const Chi2MeasurementEstimatorBase* EtaPhiEstimator::estimator_
private

Definition at line 50 of file EtaPhiEstimator.h.

Referenced by estimate().

double EtaPhiEstimator::thedEta
private

Definition at line 51 of file EtaPhiEstimator.h.

double EtaPhiEstimator::thedEta2
private

Definition at line 51 of file EtaPhiEstimator.h.

Referenced by estimate().

double EtaPhiEstimator::thedPhi
private

Definition at line 51 of file EtaPhiEstimator.h.

double EtaPhiEstimator::thedPhi2
private

Definition at line 51 of file EtaPhiEstimator.h.

Referenced by estimate().