File indexing completed on 2023-03-17 11:24:37
0001 #ifndef SimG4CMS_Muon_MuonFrameRotation_H
0002 #define SimG4CMS_Muon_MuonFrameRotation_H
0003
0004
0005
0006
0007
0008
0009
0010
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