Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-10 02:59:07

0001 #ifndef SimG4CMS_Muon_MuonEndcapFrameRotation_H
0002 #define SimG4CMS_Muon_MuonEndcapFrameRotation_H
0003 
0004 /** \class MuonEndcapFrameRotation
0005  *
0006  * implementation of FrameRotation for the muon endcap
0007  * 
0008  * \author Arno Straessner, CERN <arno.straessner@cern.ch>
0009  *
0010  * Modification:
0011  *
0012  */
0013 
0014 #include "SimG4CMS/Muon/interface/MuonFrameRotation.h"
0015 
0016 #include "G4Step.hh"
0017 
0018 class MuonEndcapFrameRotation : public MuonFrameRotation {
0019 public:
0020   ~MuonEndcapFrameRotation() override {}
0021   Local3DPoint transformPoint(const Local3DPoint &, const G4Step *) const override;
0022 
0023 private:
0024 };
0025 
0026 #endif