ROOT logo
#ifndef HLOCATEDDATAOBJECT_H
#define HLOCATEDDATAOBJECT_H

#include "TObject.h"
#include <hlocation.h>

class HLocatedDataObject : public TObject {
 public:
  HLocatedDataObject(void) {}
  ~HLocatedDataObject(void) {}
  virtual Int_t getNLocationIndex(void) {return 0;}
  virtual Int_t getLocationIndex(Int_t n) {return 0;}
  virtual HLocation* getLocation() {return NULL;};
    
  ClassDef(HLocatedDataObject,2) //Data object with localization data
};

#endif /* !HLOCATEDDATAOBJECT_H */
 hlocateddataobject.h:1
 hlocateddataobject.h:2
 hlocateddataobject.h:3
 hlocateddataobject.h:4
 hlocateddataobject.h:5
 hlocateddataobject.h:6
 hlocateddataobject.h:7
 hlocateddataobject.h:8
 hlocateddataobject.h:9
 hlocateddataobject.h:10
 hlocateddataobject.h:11
 hlocateddataobject.h:12
 hlocateddataobject.h:13
 hlocateddataobject.h:14
 hlocateddataobject.h:15
 hlocateddataobject.h:16
 hlocateddataobject.h:17
 hlocateddataobject.h:18