#include <DTRecSegment2D.h>
Public Member Functions | |
double | chi2 () const override |
the chi2 of the fit More... | |
DTRecSegment2D * | clone () const override |
AlgebraicSymMatrix | covMatrix () const |
the Covariance Matrix More... | |
int | degreesOfFreedom () const override |
return the DOF of the segment More... | |
int | dimension () const override |
return 2. The dimension of the matrix More... | |
DTRecSegment2D () | |
DTRecSegment2D (DetId id, const std::vector< DTRecHit1D > &hits) | |
c'tor from hits More... | |
DTRecSegment2D (DetId id, LocalPoint &position, LocalVector &direction, AlgebraicSymMatrix &covMatrix, double chi2, std::vector< DTRecHit1D > &hits1D) | |
complete constructor More... | |
bool | ist0Valid () const |
LocalVector | localDirection () const override |
the local direction in SL frame More... | |
LocalError | localDirectionError () const override |
the local direction error (xx,xy,yy) in SL frame: only xx is not 0. More... | |
LocalPoint | localPosition () const override |
local position in SL frame More... | |
LocalError | localPositionError () const override |
local position error in SL frame More... | |
AlgebraicVector | parameters () const override |
the vector of parameters (dx/dz,x) More... | |
AlgebraicSymMatrix | parametersError () const override |
AlgebraicMatrix | projectionMatrix () const override |
std::vector< const TrackingRecHit * > | recHits () const override |
Access to component RecHits (if any) More... | |
std::vector< TrackingRecHit * > | recHits () override |
Non-const access to component RecHits (if any) More... | |
std::vector< DTRecHit1D > | specificRecHits () const |
Access to specific components. More... | |
double | t0 () const |
Get the segment t0 (if recomputed, 0 is returned otherwise) More... | |
double | vDrift () const |
~DTRecSegment2D () override | |
Destructor. More... | |
Public Member Functions inherited from RecSegment | |
RecSegment (DetId id) | |
RecSegment (TrackingRecHit::id_type id=0) | |
~RecSegment () override | |
Destructor. More... | |
Public Member Functions inherited from TrackingRecHit | |
virtual bool | canImproveWithTrack () const |
RecHitPointer | cloneForFit (const GeomDet &idet) const |
virtual TrackingRecHit * | cloneHit () const |
virtual RecHitPointer | cloneSH () const |
const GeomDet * | det () const |
virtual const GeomDetUnit * | detUnit () const |
virtual float | errorGlobalR () const |
virtual float | errorGlobalRPhi () const |
virtual float | errorGlobalZ () const |
DetId | geographicalId () const |
virtual void | getKfComponents (KfComponentsHolder &holder) const |
unsigned int | getRTTI () const |
Type | getType () const |
virtual GlobalPoint | globalPosition () const |
virtual GlobalError | globalPositionError () const |
virtual bool | hasPositionAndError () const |
to be redefined by daughter class More... | |
virtual TrackingRecHit const * | hit () const |
bool | isValid () const |
id_type | rawId () const |
virtual void | recHitsV (std::vector< const TrackingRecHit *> &) const |
virtual void | recHitsV (std::vector< TrackingRecHit *> &) |
virtual void | setDet (const GeomDet &idet) |
virtual bool | sharesInput (const TrackingRecHit *other, SharedInputType what) const |
virtual const Surface * | surface () const |
TrackingRecHit (DetId id, Type type=valid) | |
TrackingRecHit (id_type id=0, Type type=valid) | |
TrackingRecHit (DetId id, unsigned int rt, Type type=valid) | |
TrackingRecHit (const GeomDet &idet, Type type=valid) | |
TrackingRecHit (const GeomDet &idet, unsigned int rt, Type type=valid) | |
TrackingRecHit (const GeomDet &idet, TrackingRecHit const &rh) | |
virtual ConstRecHitContainer | transientHits () const |
Type | type () const |
virtual float | weight () const |
virtual | ~TrackingRecHit () |
Protected Member Functions | |
void | setChi2 (const double &chi2) |
void | setCovMatrix (const AlgebraicSymMatrix &cov) |
void | setDirection (const LocalVector &dir) |
void | setPosition (const LocalPoint &pos) |
void | setT0 (const double &t0) |
void | setVdrift (const double &vdrift) |
void | update (std::vector< DTRecHit1D > &updatedRecHits) |
Protected Member Functions inherited from TrackingRecHit | |
void | setId (id_type iid) |
void | setRTTI (unsigned int rt) |
void | setType (Type ttype) |
Protected Attributes | |
double | theChi2 |
AlgebraicSymMatrix | theCovMatrix |
LocalVector | theDirection |
std::vector< DTRecHit1D > | theHits |
LocalPoint | thePosition |
double | theT0 |
double | theVdrift |
Private Member Functions | |
AlgebraicVector | param (const LocalPoint &lp, const LocalVector &lv) const |
Static Private Attributes | |
static const AlgebraicMatrix | theProjectionMatrix {initTheProjectionMatrix()} |
Friends | |
class | DTSegmentUpdator |
Additional Inherited Members | |
Public Types inherited from TrackingRecHit | |
typedef std::vector< ConstRecHitPointer > | ConstRecHitContainer |
using | ConstRecHitPointer = std::shared_ptr< TrackingRecHit const > |
typedef unsigned int | id_type |
typedef std::vector< ConstRecHitPointer > | RecHitContainer |
using | RecHitPointer = std::shared_ptr< TrackingRecHit const > |
enum | SharedInputType { all, some } |
definition of equality via shared input More... | |
enum | Type { valid = 0, missing = 1, inactive = 2, bad = 3, missing_inner = 4, missing_outer = 5, inactive_inner = 6, inactive_outer = 7 } |
Static Public Attributes inherited from TrackingRecHit | |
static const int | rttiShift = 24 |
static const int | typeMask = 0xf |
Base class for 2-parameters segments measuring position and direction in X projection.
Implements the AbstractDetMeasurement part of the interface for 2D RecHits in terms of localPosition() and localPositionError() and Direction. This segment is measuring the position and the direction in just one projection, the "X". Typical use case is a segment reconstructed only in X projection. To be used as base class for all 2D positional-directional segments. The coordinate measured is assumend to be the local "x" and "dx/dz"
2D Segments for the muon barrel system. 2D means that this segment has information about position and direction in one projection (r-phi or r-theta/zeta).
Definition at line 45 of file DTRecSegment2D.h.
|
inline |
Constructor empty c'tor needed by POOL (I guess)
Definition at line 49 of file DTRecSegment2D.h.
Referenced by clone().
DTRecSegment2D::DTRecSegment2D | ( | DetId | id, |
const std::vector< DTRecHit1D > & | hits | ||
) |
DTRecSegment2D::DTRecSegment2D | ( | DetId | id, |
LocalPoint & | position, | ||
LocalVector & | direction, | ||
AlgebraicSymMatrix & | covMatrix, | ||
double | chi2, | ||
std::vector< DTRecHit1D > & | hits1D | ||
) |
complete constructor
Definition at line 58 of file DTRecSegment2D.cc.
|
override |
|
inlineoverridevirtual |
the chi2 of the fit
Implements RecSegment.
Definition at line 96 of file DTRecSegment2D.h.
References theChi2.
Referenced by DTRecSegment4D::chi2(), DTSegmentUpdator::fit(), operator<<(), DTRefitAndCombineReco4D::refitSuperSegments(), DTCombinatorialPatternReco4D::segmentSpecialZed(), and setChi2().
|
inlineoverridevirtual |
Implements TrackingRecHit.
Reimplemented in DTSLRecSegment2D.
Definition at line 67 of file DTRecSegment2D.h.
References DTRecSegment2D().
|
inline |
the Covariance Matrix
Definition at line 111 of file DTRecSegment2D.h.
References theCovMatrix.
Referenced by DTRecSegment4D::DTRecSegment4D(), and DTCombinatorialPatternReco4D::segmentSpecialZed().
|
overridevirtual |
return the DOF of the segment
Implements RecSegment.
Definition at line 78 of file DTRecSegment2D.cc.
References dimension(), and theHits.
Referenced by DTLocalTriggerSynchTask::analyze(), DTRecSegment4D::degreesOfFreedom(), and operator<<().
|
inlineoverridevirtual |
return 2. The dimension of the matrix
Implements RecSegment.
Definition at line 81 of file DTRecSegment2D.h.
Referenced by degreesOfFreedom().
|
inline |
Definition at line 115 of file DTRecSegment2D.h.
References theT0, and funct::true.
Referenced by TrackDetectorAssociator::addTAMuonSegmentMatch(), DTLocalTriggerSynchTask::analyze(), DTTimingExtractor::fillTiming(), CosmicMuonTrajectoryBuilder::t0(), and DTSegmentUpdator::updateHits().
|
inlineoverridevirtual |
the local direction in SL frame
Implements RecSegment.
Definition at line 90 of file DTRecSegment2D.h.
References theDirection.
Referenced by DTVDriftCalibration::analyze(), DTSegment2DQuality::dqmAnalyze(), DTSegment2DSLPhiQuality::dqmAnalyze(), DTSegment4DQuality::dqmAnalyze(), DTRecSegment4D::DTRecSegment4D(), DTSegmentUpdator::fit(), operator<<(), parameters(), DTCombinatorialPatternReco4D::segmentSpecialZed(), and DTSegmentUpdator::update().
|
overridevirtual |
the local direction error (xx,xy,yy) in SL frame: only xx is not 0.
Implements RecSegment.
Definition at line 76 of file DTRecSegment2D.cc.
References theCovMatrix.
Referenced by DTSegment2DQuality::dqmAnalyze(), DTSegment2DSLPhiQuality::dqmAnalyze(), and DTSegment4DQuality::dqmAnalyze().
|
inlineoverridevirtual |
local position in SL frame
Implements TrackingRecHit.
Definition at line 84 of file DTRecSegment2D.h.
References thePosition.
Referenced by DTVDriftCalibration::analyze(), DTSegment2DQuality::dqmAnalyze(), DTSegment2DSLPhiQuality::dqmAnalyze(), DTSegment4DQuality::dqmAnalyze(), DTRecSegment4D::DTRecSegment4D(), DTSegmentUpdator::fit(), operator<<(), parameters(), DTCombinatorialPatternReco4D::segmentSpecialZed(), and DTSegmentUpdator::update().
|
overridevirtual |
local position error in SL frame
Implements TrackingRecHit.
Definition at line 74 of file DTRecSegment2D.cc.
References theCovMatrix.
Referenced by DTSegment2DQuality::dqmAnalyze(), DTSegment2DSLPhiQuality::dqmAnalyze(), DTSegment4DQuality::dqmAnalyze(), and DTCombinatorialPatternReco4D::segmentSpecialZed().
|
inlineprivate |
Definition at line 148 of file DTRecSegment2D.h.
References mps_fire::result, PV3DBase< T, PVType, FrameType >::x(), and PV3DBase< T, PVType, FrameType >::z().
Referenced by parameters().
|
inlineoverridevirtual |
the vector of parameters (dx/dz,x)
Implements TrackingRecHit.
Definition at line 70 of file DTRecSegment2D.h.
References localDirection(), localPosition(), and param().
|
overridevirtual |
mat[0][0]=sigma (dx/dz) mat[1][1]=sigma (x) mat[0][1]=cov(dx/dz,x)
Implements TrackingRecHit.
Definition at line 29 of file DTRecSegment2D.cc.
References visualization-live-secondInstance_cfg::m.
Referenced by DTSegmentUpdator::fit(), and DTRecSegment4D::setCovMatrixForZed().
|
inlineoverridevirtual |
return the projection matrix, which must project a parameter vector, whose components are (q/p, dx/dz, dy/dz, x, y), into the vector returned by parameters()
Implements TrackingRecHit.
Definition at line 78 of file DTRecSegment2D.h.
References theProjectionMatrix.
|
overridevirtual |
Access to component RecHits (if any)
Implements TrackingRecHit.
Definition at line 86 of file DTRecSegment2D.cc.
References theHits.
Referenced by DTSegment4DQuality::dqmAnalyze(), DTChamberEfficiencyTask::getBestSegment(), MuonAssociatorByHitsHelper::getMatchedIds(), TrackerMuonHitExtractor::getMuonHits(), DTChamberEfficiencyTask::isGoodSegment(), MuonSegmentMatcher::matchDT(), operator<<(), and MuonTrackProducer::produce().
|
overridevirtual |
Non-const access to component RecHits (if any)
Implements TrackingRecHit.
Definition at line 95 of file DTRecSegment2D.cc.
References theHits.
|
protected |
Definition at line 114 of file DTRecSegment2D.cc.
References chi2(), and theChi2.
Referenced by DTSegmentUpdator::fit().
|
protected |
Definition at line 112 of file DTRecSegment2D.cc.
References theCovMatrix.
Referenced by DTSegmentUpdator::fit().
|
protected |
Definition at line 110 of file DTRecSegment2D.cc.
References DeadROC_duringRun::dir, and theDirection.
Referenced by DTSegmentUpdator::fit().
|
protected |
Definition at line 108 of file DTRecSegment2D.cc.
References thePosition.
Referenced by DTSegmentUpdator::fit().
|
protected |
Definition at line 116 of file DTRecSegment2D.cc.
Referenced by DTSegmentUpdator::calculateT0corr(), and DTSegmentUpdator::fit().
|
protected |
Definition at line 118 of file DTRecSegment2D.cc.
References theVdrift.
Referenced by DTSegmentUpdator::calculateT0corr().
std::vector< DTRecHit1D > DTRecSegment2D::specificRecHits | ( | ) | const |
Access to specific components.
Definition at line 104 of file DTRecSegment2D.cc.
References theHits.
Referenced by TrackDetectorAssociator::addTAMuonSegmentMatch(), DTSegmentsTask::analyze(), SegmentTrackAnalyzer::analyze(), DTResidualCalibration::analyze(), DTVDriftCalibration::analyze(), DTEfficiencyTask::analyze(), DTResolutionAnalysisTask::analyze(), DTSegmentAnalysisTask::analyze(), FWDTSegmentProxyBuilder::buildViewType(), DTSegmentUpdator::calculateT0corr(), DTCalibValidationFromMuons::compute(), DTCalibValidation::compute(), MuDTSegmentExtTableProducer::fillTable(), DTTimingExtractor::fillTiming(), DTSegmentUpdator::fit(), MuonSegmentMatcher::matchDT(), DTSegmentSelector::operator()(), DTSegmentUpdator::rejectBadHits(), DTCombinatorialPatternReco4D::segmentSpecialZed(), CosmicMuonTrajectoryBuilder::t0(), and DTSegmentUpdator::updateHits().
|
inline |
Get the segment t0 (if recomputed, 0 is returned otherwise)
Definition at line 114 of file DTRecSegment2D.h.
References theT0.
Referenced by TrackDetectorAssociator::addTAMuonSegmentMatch(), DTSegment4DQuality::dqmAnalyze(), DTTimingExtractor::fillTiming(), DTSegmentUpdator::fit(), setT0(), CosmicMuonTrajectoryBuilder::t0(), and DTSegmentUpdator::updateHits().
|
protected |
Definition at line 106 of file DTRecSegment2D.cc.
References theHits.
Referenced by progressbar.ProgressBar::__next__(), MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), dqm-mbProfile.Profile::finish(), progressbar.ProgressBar::finish(), MatrixUtil.Steps::overwrite(), DTSegmentUpdator::rejectBadHits(), and DTSegmentUpdator::updateHits().
|
inline |
Get the vDirft as computed by the algo for the computation of the segment t0 (if recomputed, 0 is returned otherwise)
Definition at line 119 of file DTRecSegment2D.h.
References theVdrift.
Referenced by DTSegmentUpdator::updateHits().
|
friend |
Definition at line 122 of file DTRecSegment2D.h.
|
protected |
Definition at line 139 of file DTRecSegment2D.h.
|
protected |
mat[0][0]=sigma (dx/dz) mat[1][1]=sigma (x) mat[0][1]=cov(dx/dz,x)
Definition at line 137 of file DTRecSegment2D.h.
Referenced by covMatrix(), localDirectionError(), localPositionError(), and setCovMatrix().
|
protected |
Definition at line 132 of file DTRecSegment2D.h.
Referenced by localDirection(), and setDirection().
|
protected |
Definition at line 143 of file DTRecSegment2D.h.
Referenced by degreesOfFreedom(), recHits(), specificRecHits(), and update().
|
protected |
Definition at line 131 of file DTRecSegment2D.h.
Referenced by localPosition(), and setPosition().
|
staticprivate |
Definition at line 146 of file DTRecSegment2D.h.
Referenced by projectionMatrix().
|
protected |
Definition at line 140 of file DTRecSegment2D.h.
Referenced by ist0Valid(), setT0(), and t0().
|
protected |
Definition at line 141 of file DTRecSegment2D.h.
Referenced by setVdrift(), and vDrift().