#ifndef HRICHPADGRAPH_H
#define HRICHPADGRAPH_H
#include "TObject.h"
class HRichPadGraph: public TObject {
private:
Int_t iNodeListLen;
Int_t iNodeNr;
Int_t iLinkNodeNr;
public:
Int_t iLabel;
HRichPadGraph **pNodeList;
HRichPadGraph();
virtual ~HRichPadGraph();
HRichPadGraph(const HRichPadGraph& source);
HRichPadGraph& operator=(const HRichPadGraph& source);
void InitGraph(Int_t nodenr, Int_t listlen);
void AddNode(HRichPadGraph* nodeptr);
Int_t MarkNodes(Int_t labelnr);
ClassDef(HRichPadGraph,1)
};
#endif // HRICHPADGRAPH_H
Last change: Sat May 22 13:09:33 2010
Last generated: 2010-05-22 13:09
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.