//*-- AUTHOR : Ilse Koenig
//*-- Created : 12/11/2003
//_HADES_CLASS_DESCRIPTION
/////////////////////////////////////////////////////////////
// HGeomUser
//
// Class for user defined detector
//
/////////////////////////////////////////////////////////////
#include "hgeomuser.h"
#include "hgeomuserhit.h"
ClassImp(HGeomUser)
HGeomUser::HGeomUser() {
// Constructor
fName="user";
maxSectors=0;
maxModules=9;
pHit=new HGeomUserHit(this);
}
const char* HGeomUser::getModuleName(Int_t m) {
// Return the module name in plane m
sprintf(modName,"U%iKI",m+1);
return modName;
}
const char* HGeomUser::getEleName(Int_t m) {
// Return the element name in plane m
sprintf(eleName,"U%i",m+1);
return eleName;
}
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.