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
StackGeomDet Class Reference

#include <StackGeomDet.h>

Inheritance diagram for StackGeomDet:
TrackerGeomDet GeomDet

Public Member Functions

virtual std::vector< const
GeomDet * > 
components () const
 Returns direct components, if any. More...
 
bool isLeaf () const override
 is a Unit More...
 
const GeomDetUnitlowerDet () const
 
 StackGeomDet (BoundPlane *sp, const GeomDetUnit *lowerDet, const GeomDetUnit *upperDet, const DetId stackDetId)
 
virtual SubDetector subDetector () const
 Which subdetector. More...
 
const GeomDetUnitupperDet () const
 
virtual ~StackGeomDet ()
 
- Public Member Functions inherited from TrackerGeomDet
LocalError const & localAlignmentError () const
 Return local alligment error. More...
 
- Public Member Functions inherited from GeomDet
AlignmentPositionError const * alignmentPositionError () const
 Return pointer to alignment errors. More...
 
virtual const GeomDetcomponent (DetId) const
 Returns a component GeomDet given its DetId, if existing. More...
 
DetId geographicalId () const
 The label of this GeomDet. More...
 
 GeomDet (Plane *plane)
 
 GeomDet (const ReferenceCountingPointer< Plane > &plane)
 
int index () const
 
const Surface::PositionTypeposition () const
 The position (origin of the R.F.) More...
 
const Surface::RotationTyperotation () const
 The rotation defining the local R.F. More...
 
void setIndex (int i)
 
const PlanespecificSurface () const
 Same as surface(), kept for backward compatibility. More...
 
const Planesurface () const
 The nominal surface of the GeomDet. More...
 
virtual const SurfaceDeformationsurfaceDeformation () const
 
GlobalPoint toGlobal (const Local2DPoint &lp) const
 Conversion to the global R.F. from the R.F. of the GeomDet. More...
 
GlobalPoint toGlobal (const Local3DPoint &lp) const
 Conversion to the global R.F. from the R.F. of the GeomDet. More...
 
GlobalVector toGlobal (const LocalVector &lv) const
 Conversion to the global R.F. from the R.F. of the GeomDet. More...
 
LocalPoint toLocal (const GlobalPoint &gp) const
 Conversion to the R.F. of the GeomDet. More...
 
LocalVector toLocal (const GlobalVector &gv) const
 Conversion to the R.F. of the GeomDet. More...
 
virtual const Topologytopology () const
 
virtual const GeomDetTypetype () const
 
virtual ~GeomDet ()
 

Private Attributes

const GeomDetUnittheLowerDet
 
const GeomDetUnittheUpperDet
 

Additional Inherited Members

- Public Types inherited from GeomDet
typedef
GeomDetEnumerators::SubDetector 
SubDetector
 
- Protected Member Functions inherited from TrackerGeomDet
 TrackerGeomDet (Plane *plane)
 
 TrackerGeomDet (const ReferenceCountingPointer< Plane > &plane)
 
- Protected Member Functions inherited from GeomDet
void setDetId (DetId id)
 
- Protected Attributes inherited from GeomDet
AlignmentPositionErrortheAlignmentPositionError
 

Detailed Description

Definition at line 7 of file StackGeomDet.h.

Constructor & Destructor Documentation

StackGeomDet::StackGeomDet ( BoundPlane sp,
const GeomDetUnit lowerDet,
const GeomDetUnit upperDet,
const DetId  stackDetId 
)

Definition at line 3 of file StackGeomDet.cc.

References GeomDet::setDetId().

3  :
4  TrackerGeomDet(sp),theLowerDet(lowerDet),theUpperDet(upperDet){
5  setDetId(stackDetId);
6 }
void setDetId(DetId id)
Definition: GeomDet.h:114
const GeomDetUnit * theUpperDet
Definition: StackGeomDet.h:25
const GeomDetUnit * theLowerDet
Definition: StackGeomDet.h:21
TrackerGeomDet(Plane *plane)
Definition: TrackerGeomDet.h:9
StackGeomDet::~StackGeomDet ( )
virtual

Definition at line 8 of file StackGeomDet.cc.

9 {}

Member Function Documentation

std::vector< const GeomDet * > StackGeomDet::components ( ) const
virtual

Returns direct components, if any.

Reimplemented from GeomDet.

Definition at line 11 of file StackGeomDet.cc.

References theLowerDet, and theUpperDet.

11  {
12  return std::vector<const GeomDet*>{theLowerDet,theUpperDet};
13 }
const GeomDetUnit * theUpperDet
Definition: StackGeomDet.h:25
const GeomDetUnit * theLowerDet
Definition: StackGeomDet.h:21
bool StackGeomDet::isLeaf ( ) const
inlineoverridevirtual

is a Unit

Reimplemented from GeomDet.

Definition at line 14 of file StackGeomDet.h.

14 { return false;}
const GeomDetUnit* StackGeomDet::lowerDet ( ) const
inline

Definition at line 20 of file StackGeomDet.h.

References theLowerDet.

Referenced by MeasurementTrackerImpl::initStackDet().

20 { return theLowerDet; };
const GeomDetUnit * theLowerDet
Definition: StackGeomDet.h:21
virtual SubDetector StackGeomDet::subDetector ( ) const
inlinevirtual

Which subdetector.

Reimplemented from GeomDet.

Definition at line 18 of file StackGeomDet.h.

References GeomDet::subDetector(), and theLowerDet.

18 { return theLowerDet->subDetector(); };
const GeomDetUnit * theLowerDet
Definition: StackGeomDet.h:21
virtual SubDetector subDetector() const
Which subdetector.
Definition: GeomDet.cc:49
const GeomDetUnit* StackGeomDet::upperDet ( ) const
inline

Definition at line 21 of file StackGeomDet.h.

References theUpperDet.

Referenced by MeasurementTrackerImpl::initStackDet().

21 { return theUpperDet; };
const GeomDetUnit * theUpperDet
Definition: StackGeomDet.h:25

Member Data Documentation

const GeomDetUnit* StackGeomDet::theLowerDet
private

Definition at line 21 of file StackGeomDet.h.

Referenced by components(), lowerDet(), and subDetector().

const GeomDetUnit* StackGeomDet::theUpperDet
private

Definition at line 25 of file StackGeomDet.h.

Referenced by components(), and upperDet().