Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Geometry_TrackerNumberingBuilder_DDDCmsTrackerContruction_H
0002 #define Geometry_TrackerNumberingBuilder_DDDCmsTrackerContruction_H
0003 
0004 #include "Geometry/TrackerNumberingBuilder/interface/CmsTrackerStringToEnum.h"
0005 #include "FWCore/ParameterSet/interface/types.h"
0006 #include <string>
0007 #include <vector>
0008 #include <memory>
0009 
0010 class GeometricDet;
0011 class DDCompactView;
0012 
0013 namespace cms {
0014   class DDCompactView;
0015 }
0016 
0017 /**
0018  * High level class to build a tracker. It will only build subdets,
0019  * then call subdet builders
0020  */
0021 
0022 namespace DDDCmsTrackerContruction {
0023   std::unique_ptr<GeometricDet> construct(DDCompactView const& cpv, std::vector<int> const& detidShifts);
0024   std::unique_ptr<GeometricDet> construct(cms::DDCompactView const& cpv, std::vector<int> const& detidShifts);
0025   void printAllTrackerGeometricDets(const GeometricDet* tracker);
0026 };  // namespace DDDCmsTrackerContruction
0027 
0028 #endif