Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:29

0001 #ifndef Geometry_TrackerNumberingBuilder_CondDBCmsTrackerConstruction_H
0002 #define Geometry_TrackerNumberingBuilder_CondDBCmsTrackerConstruction_H
0003 
0004 #include "Geometry/TrackerNumberingBuilder/interface/CmsTrackerStringToEnum.h"
0005 #include "FWCore/ParameterSet/interface/types.h"
0006 #include <string>
0007 
0008 class GeometricDet;
0009 class DDCompactView;
0010 class PGeometricDet;
0011 
0012 /**
0013  * High level class to build a tracker. It will only build subdets,
0014  * then call subdet builders
0015  */
0016 
0017 class CondDBCmsTrackerConstruction {
0018 public:
0019   CondDBCmsTrackerConstruction() = delete;
0020   static std::unique_ptr<GeometricDet> construct(const PGeometricDet& pgd);
0021 };
0022 
0023 #endif