//*-- AUTHOR : Ilse Koenig
//*-- Created : 10/11/2003
//_HADES_CLASS_DESCRIPTION
/////////////////////////////////////////////////////////////
// HGeomMdc
//
// Class for geometry of MDC
//
/////////////////////////////////////////////////////////////
#include "hgeommdc.h"
#include "hgeommdchit.h"
ClassImp(HGeomMdc)
HGeomMdc::HGeomMdc() {
// Constructor
fName="mdc";
maxSectors=6;
maxModules=4;
pHit=new HGeomMdcHit(this);
}
const char* HGeomMdc::getModuleName(Int_t m) {
// Return the module name in plane m
sprintf(modName,"DR%iM",m+1);
return modName;
}
const char* HGeomMdc::getEleName(Int_t m) {
// Return the element name in plane m
sprintf(eleName,"D%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.