#ifndef HGEOSECT_H #define HGEOSECT_H #include "hgeoset.h" #include "hgeomedia.h" // // class for SECT derived from baseclass HGeoSet (linked list); // class HGeoSect : public HGeoSet { public: HGeoSect(HGeoShapes & shapes) : HGeoSet() { // name of the "detector" detName="SEC"; // pointer to the class HGeoShapes pShapes=&shapes; } ~HGeoSect(){} // reads 6 sectors from file int readDet(HGeoInfo & geoInfo); // reads 6 sectors from database int readDet(HGeoInfo & geoInfo, HGeoMedia & geoMedia); // creates all sectors with inout-flag 1 int createDet(HGeoInfo & geoInfo, HGeoMedia & geomedia); }; #endif