Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:13

0001 #ifndef SimG4CMS_TrackerFrameRotation_H
0002 #define SimG4CMS_TrackerFrameRotation_H
0003 
0004 #include "SimG4Core/SensitiveDetector/interface/FrameRotation.h"
0005 
0006 /**
0007  * To be used for test beam etc. Note: if the sensitive detecor is created without an organization, force this one
0008  */
0009 
0010 class G4VPhysicalVolume;
0011 
0012 class TrackerFrameRotation : public FrameRotation {
0013 public:
0014   ~TrackerFrameRotation() override = default;
0015   Local3DPoint transformPoint(const Local3DPoint &, const G4VPhysicalVolume *v = nullptr) const final;
0016 };
0017 
0018 #endif