CMS 3D CMS Logo

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

#include <MuonGEMFrameRotation.h>

Inheritance diagram for MuonGEMFrameRotation:
MuonFrameRotation

Public Member Functions

 MuonGEMFrameRotation (const MuonDDDConstants &muonConstants)
 
Local3DPoint transformPoint (const Local3DPoint &, const G4Step *) const override
 
 ~MuonGEMFrameRotation () override
 
- Public Member Functions inherited from MuonFrameRotation
 MuonFrameRotation ()
 
virtual ~MuonFrameRotation ()
 

Private Attributes

MuonG4Numberingg4numbering
 
int theSectorLevel
 

Detailed Description

implementation of FrameRotation for the muon gem

Author
Arno Straessner, CERN arno..nosp@m.stra.nosp@m.essne.nosp@m.r@ce.nosp@m.rn.ch

Modification:

Definition at line 20 of file MuonGEMFrameRotation.h.

Constructor & Destructor Documentation

MuonGEMFrameRotation::MuonGEMFrameRotation ( const MuonDDDConstants muonConstants)

Definition at line 7 of file MuonGEMFrameRotation.cc.

References g4numbering, MuonDDDConstants::getValue(), and theSectorLevel.

9  g4numbering = new MuonG4Numbering(muonConstants);
10  int theLevelPart = muonConstants.getValue("level");
11  theSectorLevel = muonConstants.getValue("mg_sector") / theLevelPart;
12 }
MuonG4Numbering * g4numbering
int getValue(const std::string &name) const
MuonGEMFrameRotation::~MuonGEMFrameRotation ( )
override

Definition at line 14 of file MuonGEMFrameRotation.cc.

References g4numbering.

14 { delete g4numbering; }
MuonG4Numbering * g4numbering

Member Function Documentation

Local3DPoint MuonGEMFrameRotation::transformPoint ( const Local3DPoint point,
const G4Step *   
) const
overridevirtual

Reimplemented from MuonFrameRotation.

Definition at line 16 of file MuonGEMFrameRotation.cc.

References PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

16  {
17  //---VI: theSectorLevel and g4numbering are not used
18  return Local3DPoint(point.x(), point.z(), -point.y());
19 }
T y() const
Definition: PV3DBase.h:63
T z() const
Definition: PV3DBase.h:64
Point3DBase< float, LocalTag > Local3DPoint
Definition: LocalPoint.h:9
T x() const
Definition: PV3DBase.h:62

Member Data Documentation

MuonG4Numbering* MuonGEMFrameRotation::g4numbering
private

Definition at line 27 of file MuonGEMFrameRotation.h.

Referenced by MuonGEMFrameRotation(), and ~MuonGEMFrameRotation().

int MuonGEMFrameRotation::theSectorLevel
private

Definition at line 28 of file MuonGEMFrameRotation.h.

Referenced by MuonGEMFrameRotation().