//*-- AUTHOR : Ilse Koenig //*-- Created : 10/11/2003 ///////////////////////////////////////////////////////////// // CbmGeoTof // // Class for geometry of STT // ///////////////////////////////////////////////////////////// #include "CbmGeoStt.h" #include "CbmGeoNode.h" ClassImp(CbmGeoStt) CbmGeoStt::CbmGeoStt() { // Constructor fName="stt"; maxSectors=0; maxModules=1; } const char* CbmGeoStt::getModuleName(Int_t m) { // Returns the module name of stt number m sprintf(modName,"stt%i",m+1); return modName; } const char* CbmGeoStt::getEleName(Int_t m) { // Returns the element name of sts number m sprintf(eleName,"s%i",m+1); return eleName; }