Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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