#ifndef HLINKEDDATAOBJECT_H
#define HLINKEDDATAOBJECT_H
#include "hlocateddataobject.h"
class HLinkedDataObject : public HLocatedDataObject {
public:
Float_t sortVariable;
protected:
Short_t nextHit;
public:
HLinkedDataObject(void);
~HLinkedDataObject(void);
void setNextHitIndex(Int_t next) {nextHit = (Short_t)next;}
Int_t getNextHitIndex(void) {return (Int_t)nextHit;}
virtual Int_t getTrack() {return 0;}
ClassDef(HLinkedDataObject,1)
};
#endif /* !HLINKEDDATAOBJECT_H */
Last change: Sat May 22 12:58:58 2010
Last generated: 2010-05-22 12:58
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.