//*-- AUTHOR : Ilse Koenig //*-- Created : 20/05/2003 ///////////////////////////////////////////////////////////// // HGeoMdc // // Class for HADES MDC // ///////////////////////////////////////////////////////////// #include "hgeomdc.h" #include "hgeomdchit.h" ClassImp(HGeoMdc) HGeoMdc::HGeoMdc() { fName="mdc"; maxSectors=6; maxModules=4; HGeoMdcHit *pHit=new HGeoMdcHit(this); hadesGeo = 1; } const char* HGeoMdc::getModuleName(Int_t m) { sprintf(modName,"DR%iM",m+1); return modName; } const char* HGeoMdc::getEleName(Int_t m) { sprintf(eleName,"D%i",m+1); return eleName; }