#ifndef HLINKEDDATAOBJECT_H
#define HLINKEDDATAOBJECT_H

#include "hlocateddataobject.h"

class HLinkedDataObject : public HLocatedDataObject {
 public:
  Float_t sortVariable;  //! used to sort linked objects (non-persistent!)
 protected:
  Short_t nextHit;  // index of next hit object in cat (-1 if none)
 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)  //Data object with link index
};

#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.