00001 #ifndef Geometry_TrackerGeometryBuilder_PixelTopologyBuilder_H 00002 #define Geometry_TrackerGeometryBuilder_PixelTopologyBuilder_H 00003 00004 #include <string> 00005 class PixelTopology; 00006 class Bounds; 00007 00012 class PixelTopologyBuilder { 00013 public: 00014 00015 PixelTopologyBuilder(); 00016 00017 PixelTopology* build(const Bounds* , double ,double ,double ,double ,std::string ); 00018 00019 private: 00020 00021 double thePixelROCRows; 00022 double thePixelROCCols; 00023 double thePixelROCsInX; 00024 double thePixelROCsInY; 00025 00026 }; 00027 00028 #endif