#include "NewDetectorGeo.h" #include "FairGeoNode.h" ClassImp(NewDetectorGeo) // ----- Default constructor ------------------------------------------- NewDetectorGeo::NewDetectorGeo() : FairGeoSet() { // Constructor // fName has to be the name used in the geometry for all volumes. // If there is a mismatch the geometry cannot be build. fName="newdetector"; maxSectors=0; maxModules=10; } // ------------------------------------------------------------------------- const char* NewDetectorGeo::getModuleName(Int_t m) { /** Returns the module name of NewDetector number m Setting NewDetector here means that all modules names in the ASCII file should start with NewDetector otherwise they will not be constructed */ sprintf(modName,"NewDetector%i",m+1); return modName; } const char* NewDetectorGeo::getEleName(Int_t m) { /** Returns the element name of Det number m */ sprintf(eleName,"NewDetector%i",m+1); return eleName; }