Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:24:37

0001 #ifndef SimG4CMS_Muon_MuonFrameRotation_H
0002 #define SimG4CMS_Muon_MuonFrameRotation_H
0003 
0004 /** \class MuonFrameRotation
0005  *
0006  * \author Arno Straessner, CERN <arno.straessner@cern.ch>
0007  *
0008  * Modification:
0009  * Pedro Arce 31/01/2006
0010  * Make it base class of each detector FrameRotation  
0011  */
0012 
0013 #include "DataFormats/GeometryVector/interface/LocalPoint.h"
0014 
0015 class G4Step;
0016 
0017 class MuonFrameRotation {
0018 public:
0019   MuonFrameRotation(){};
0020   virtual ~MuonFrameRotation(){};
0021   virtual Local3DPoint transformPoint(const Local3DPoint &, const G4Step *) const;
0022 };
0023 
0024 #endif