#include "FairTutorialDet2Geo.h" #include "FairGeoNode.h" ClassImp(FairTutorialDet2Geo) // ----- Default constructor ------------------------------------------- FairTutorialDet2Geo::FairTutorialDet2Geo() : FairGeoSet() { // Constructor fName="tutdet"; maxSectors=0; maxModules=10; } // ------------------------------------------------------------------------- const char* FairTutorialDet2Geo::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* FairTutorialDet2Geo::getEleName(Int_t m) { /** Returns the element name of Det number m */ sprintf(eleName,"tutdet%i",m+1); return eleName; }