#include "CbmTutorialDetGeo.h" #include "FairGeoNode.h" ClassImp(CbmTutorialDetGeo) // ----- Default constructor ------------------------------------------- CbmTutorialDetGeo::CbmTutorialDetGeo() { // Constructor fName="tutdet"; maxSectors=0; maxModules=10; } // ------------------------------------------------------------------------- const char* CbmTutorialDetGeo::getModuleName(Int_t m) { /** Returns the module name of TutorialDet number m Setting MyDet here means that all modules names in the ASCII file should start with TutorialDet otherwise they will not be constructed */ sprintf(modName,"tutdet%i",m+1); return modName; } const char* CbmTutorialDetGeo::getEleName(Int_t m) { /** Returns the element name of Det number m */ sprintf(eleName,"tutdet%i",m+1); return eleName; }