#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 */

Last change: Sat May 22 12:59:04 2010
Last generated: 2010-05-22 12:59

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.