CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
DTSLRecCluster Class Reference

#include <DTSLRecCluster.h>

Inheritance diagram for DTSLRecCluster:
RecHit1D TrackingRecHit

Public Member Functions

DTSLRecClusterclone () const override
 The clone method needed by the clone policy. More...
 
int dimension () const override
 return 2. The dimension of the matrix More...
 
 DTSLRecCluster ()
 
 DTSLRecCluster (const DTSuperLayerId id, const std::vector< DTRecHit1DPair > &pair)
 c'tor from hits More...
 
 DTSLRecCluster (const DTSuperLayerId id, const LocalPoint &, const LocalError &, const std::vector< DTRecHit1DPair > &pair)
 complete constructor More...
 
LocalPoint localPosition () const override
 Local position. More...
 
LocalError localPositionError () const override
 Error on the local position. More...
 
int nHits () const
 
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
 return the hits More...
 
std::vector< TrackingRecHit * > recHits () override
 Non-const access to component RecHits (if any) More...
 
std::vector< DTRecHit1DPairspecificRecHits () const
 Access to specific components. More...
 
DTSuperLayerId superLayerId () const
 The id of the superlayer on which reside the segment. More...
 
 ~DTSLRecCluster () override
 
- Public Member Functions inherited from RecHit1D
int dimension () const override
 Return the RecHit dimension. More...
 
AlgebraicVector parameters () const override
 Return just the x. More...
 
AlgebraicSymMatrix parametersError () const override
 Return just "(sigma_x)^2". More...
 
AlgebraicMatrix projectionMatrix () const override
 Return the projection matrix. More...
 
 RecHit1D (DetId id)
 
 RecHit1D (TrackingRecHit::id_type id=0)
 
 ~RecHit1D () override
 Destructor. More...
 
- Public Member Functions inherited from TrackingRecHit
virtual bool canImproveWithTrack () const
 
RecHitPointer cloneForFit (const GeomDet &idet) const
 
virtual TrackingRecHitcloneHit () const
 
virtual RecHitPointer cloneSH () const
 
const GeomDetdet () const
 
virtual const GeomDetUnitdetUnit () 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 Surfacesurface () 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 ()
 

Private Member Functions

AlgebraicVector param (const LocalPoint &lp) const
 
AlgebraicSymMatrix parError (const LocalError &le) const
 

Private Attributes

std::vector< DTRecHit1DPairthePairs
 
LocalPoint thePos
 
LocalError thePosError
 
DTSuperLayerId theSlid
 

Static Private Attributes

static const AlgebraicMatrix theProjectionMatrix = initMatrix()
 

Additional Inherited Members

- Public Types inherited from TrackingRecHit
typedef std::vector< ConstRecHitPointerConstRecHitContainer
 
using ConstRecHitPointer = std::shared_ptr< TrackingRecHit const >
 
typedef unsigned int id_type
 
typedef std::vector< ConstRecHitPointerRecHitContainer
 
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
 
- Protected Member Functions inherited from TrackingRecHit
void setId (id_type iid)
 
void setRTTI (unsigned int rt)
 
void setType (Type ttype)
 

Detailed Description

Description:

detailed description

Author
: Stefano Lacaprara - INFN LNL stefa.nosp@m.no.l.nosp@m.acapr.nosp@m.ara@.nosp@m.pd.in.nosp@m.fn.i.nosp@m.t

Modification:

Definition at line 30 of file DTSLRecCluster.h.

Constructor & Destructor Documentation

DTSLRecCluster::DTSLRecCluster ( )
inline

Definition at line 35 of file DTSLRecCluster.h.

Referenced by clone().

35 {}
DTSLRecCluster::DTSLRecCluster ( const DTSuperLayerId  id,
const std::vector< DTRecHit1DPair > &  pair 
)

c'tor from hits

Definition at line 34 of file DTSLRecCluster.cc.

34  :
35 theSlid(id), thePairs(pairs){
36 }
std::vector< DTRecHit1DPair > thePairs
DTSuperLayerId theSlid
DTSLRecCluster::DTSLRecCluster ( const DTSuperLayerId  id,
const LocalPoint pos,
const LocalError err,
const std::vector< DTRecHit1DPair > &  pair 
)

complete constructor

Definition at line 38 of file DTSLRecCluster.cc.

41  :
42 theSlid(id), thePos(pos), thePosError(err), thePairs(pairs){
43 }
std::vector< DTRecHit1DPair > thePairs
DTSuperLayerId theSlid
LocalPoint thePos
LocalError thePosError
DTSLRecCluster::~DTSLRecCluster ( )
inlineoverride

Definition at line 47 of file DTSLRecCluster.h.

47 {}

Member Function Documentation

DTSLRecCluster* DTSLRecCluster::clone ( void  ) const
inlineoverridevirtual

The clone method needed by the clone policy.

Implements TrackingRecHit.

Definition at line 51 of file DTSLRecCluster.h.

References DTSLRecCluster().

51 { return new DTSLRecCluster(*this); }
int DTSLRecCluster::dimension ( ) const
inlineoverridevirtual

return 2. The dimension of the matrix

Implements TrackingRecHit.

Definition at line 74 of file DTSLRecCluster.h.

74 { return 2;}
LocalPoint DTSLRecCluster::localPosition ( ) const
inlineoverridevirtual

Local position.

Implements RecHit1D.

Definition at line 75 of file DTSLRecCluster.h.

References thePos.

Referenced by operator<<(), and parameters().

75 { return thePos; }
LocalPoint thePos
LocalError DTSLRecCluster::localPositionError ( ) const
inlineoverridevirtual

Error on the local position.

Implements RecHit1D.

Definition at line 76 of file DTSLRecCluster.h.

References recHits(), and thePosError.

Referenced by operator<<(), and parametersError().

76 { return thePosError; }
LocalError thePosError
int DTSLRecCluster::nHits ( ) const
inline

Definition at line 86 of file DTSLRecCluster.h.

References thePairs.

Referenced by operator<<().

86 { return thePairs.size() ; }
std::vector< DTRecHit1DPair > thePairs
AlgebraicVector DTSLRecCluster::param ( const LocalPoint lp) const
inlineprivate

Definition at line 99 of file DTSLRecCluster.h.

References mps_fire::result, and PV3DBase< T, PVType, FrameType >::x().

Referenced by parameters().

99  {
101  result[1]=lp.x();
102  return result;
103  }
CLHEP::HepVector AlgebraicVector
T x() const
Definition: PV3DBase.h:62
AlgebraicVector DTSLRecCluster::parameters ( void  ) const
inlineoverridevirtual

the vector of parameters (dx/dz,x)

Implements TrackingRecHit.

Definition at line 57 of file DTSLRecCluster.h.

References localPosition(), and param().

Referenced by Vispa.Plugins.ConfigEditor.ConfigDataAccessor.ConfigDataAccessor::inputTags(), Vispa.Plugins.ConfigEditor.ConfigDataAccessor.ConfigDataAccessor::properties(), and Vispa.Plugins.ConfigEditor.ConfigDataAccessor.ConfigDataAccessor::recursePSetProperties().

57  {
58  return param( localPosition());
59  }
LocalPoint localPosition() const override
Local position.
AlgebraicVector param(const LocalPoint &lp) const
AlgebraicSymMatrix DTSLRecCluster::parametersError ( ) const
inlineoverridevirtual

Implements TrackingRecHit.

Definition at line 62 of file DTSLRecCluster.h.

References localPositionError(), and parError().

62  {
63  return parError( localPositionError());
64  }
AlgebraicSymMatrix parError(const LocalError &le) const
LocalError localPositionError() const override
Error on the local position.
AlgebraicSymMatrix DTSLRecCluster::parError ( const LocalError le) const
inlineprivate

Definition at line 105 of file DTSLRecCluster.h.

References funct::m, operator<<(), and LocalError::xx().

Referenced by parametersError().

105  {
107  m[0][0]=le.xx();
108  return m;
109  }
float xx() const
Definition: LocalError.h:24
CLHEP::HepSymMatrix AlgebraicSymMatrix
AlgebraicMatrix DTSLRecCluster::projectionMatrix ( ) const
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 69 of file DTSLRecCluster.h.

References theProjectionMatrix.

69  {
70  return theProjectionMatrix;
71  }
static const AlgebraicMatrix theProjectionMatrix
vector< const TrackingRecHit * > DTSLRecCluster::recHits ( ) const
overridevirtual

return the hits

Implements TrackingRecHit.

Definition at line 48 of file DTSLRecCluster.cc.

References thePairs.

Referenced by localPositionError().

48  {
49  std::vector<const TrackingRecHit*> pointersOfRecHits;
50 
51  for(std::vector<DTRecHit1DPair>::const_iterator rechit = thePairs.begin();
52  rechit != thePairs.end(); rechit++)
53  pointersOfRecHits.push_back( &(*rechit) );
54 
55  return pointersOfRecHits;
56 }
std::vector< DTRecHit1DPair > thePairs
vector< TrackingRecHit * > DTSLRecCluster::recHits ( )
overridevirtual

Non-const access to component RecHits (if any)

Implements TrackingRecHit.

Definition at line 58 of file DTSLRecCluster.cc.

References thePairs.

58  {
59  std::vector<TrackingRecHit*> pointersOfRecHits;
60 
61  for(std::vector<DTRecHit1DPair>::iterator rechit = thePairs.begin();
62  rechit != thePairs.end(); rechit++)
63  pointersOfRecHits.push_back( &(*rechit) );
64 
65  return pointersOfRecHits;
66 }
std::vector< DTRecHit1DPair > thePairs
std::vector<DTRecHit1DPair> DTSLRecCluster::specificRecHits ( ) const
inline

Access to specific components.

Definition at line 84 of file DTSLRecCluster.h.

References thePairs.

84 { return thePairs; }
std::vector< DTRecHit1DPair > thePairs
DTSuperLayerId DTSLRecCluster::superLayerId ( ) const
inline

The id of the superlayer on which reside the segment.

Definition at line 54 of file DTSLRecCluster.h.

References theSlid.

54 { return theSlid; }
DTSuperLayerId theSlid

Member Data Documentation

std::vector<DTRecHit1DPair> DTSLRecCluster::thePairs
private

Definition at line 94 of file DTSLRecCluster.h.

Referenced by nHits(), recHits(), and specificRecHits().

LocalPoint DTSLRecCluster::thePos
private

Definition at line 91 of file DTSLRecCluster.h.

Referenced by localPosition().

LocalError DTSLRecCluster::thePosError
private

Definition at line 92 of file DTSLRecCluster.h.

Referenced by localPositionError().

const AlgebraicMatrix DTSLRecCluster::theProjectionMatrix = initMatrix()
staticprivate

Definition at line 97 of file DTSLRecCluster.h.

Referenced by initMatrix(), and projectionMatrix().

DTSuperLayerId DTSLRecCluster::theSlid
private

Definition at line 89 of file DTSLRecCluster.h.

Referenced by superLayerId().