Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 ///////////////////////////////////////////////////////////////////////////////
0002 // File: PPSVDetectorOrganization.h
0003 // Description: Base class for numbering scheme of PPS
0004 ///////////////////////////////////////////////////////////////////////////////
0005 #ifndef _PPS_VDetectorOrganization_h
0006 #define _PPS_VDetectorOrganization_h
0007 
0008 #include "G4Step.hh"
0009 
0010 class PPSVDetectorOrganization {
0011 public:
0012   PPSVDetectorOrganization() {}
0013   virtual ~PPSVDetectorOrganization() {}
0014   virtual uint32_t unitID(const G4Step* aStep) = 0;
0015 };
0016 
0017 #endif