Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:14:16

0001 #ifndef CaloVGeometryLoader_h
0002 #define CaloVGeometryLoader_h
0003 
0004 #include "DataFormats/DetId/interface/DetId.h"
0005 #include <memory>
0006 
0007 class CaloSubdetectorGeometry;
0008 
0009 /** \class CaloVGeometryLoader 
0010 
0011   Abstract base class for a subdetector geometry loader.
0012  */
0013 class CaloVGeometryLoader {
0014 public:
0015   virtual ~CaloVGeometryLoader() = default;
0016   /// Load the subdetector geometry for the specified det and subdet
0017   virtual std::unique_ptr<CaloSubdetectorGeometry> load(DetId::Detector det, int subdet) = 0;
0018 };
0019 
0020 #endif