#ifndef HGEOMBUILDER_H
#define HGEOMBUILDER_H
#include "TNamed.h"
class HGeomSet;
class HGeomNode;
class HGeomMedium;
class HGeomHit;
class HGeomBuilder : public TNamed {
protected:
Int_t nRot;
Int_t nMed;
HGeomBuilder();
HGeomBuilder(const char* name,const char* title);
public:
virtual ~HGeomBuilder() {}
virtual Bool_t createNode(HGeomNode*)=0;
virtual Int_t createMedium(HGeomMedium*)=0;
virtual Bool_t createHit(HGeomHit*) {return kTRUE;}
virtual void finalize() {}
ClassDef(HGeomBuilder,0)
};
#endif /* !HGEOMBUILDER_H */
Last change: Sat May 22 12:56:11 2010
Last generated: 2010-05-22 12:56
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.