#ifndef HDATAOBJID_H
#define HDATAOBJID_H
#include "TObject.h"
#include "haddef.h"
#include "hgeantdef.h"
#include "hlocation.h"
class HDataObjId : public TObject {
protected:
Cat_t fCategory;
HLocation fLocation;
public:
HDataObjId(void);
HDataObjId(Cat_t aCat,HLocation &aLoc);
~HDataObjId(void);
void setCategory(Cat_t aCat) {fCategory=aCat;}
void setLocation(HLocation &aLoc);
Cat_t getCategory(void) {return fCategory; }
HLocation &getLocation(void) { return fLocation; }
ClassDef(HDataObjId,1)
};
#endif /* !HDATAOBJID */
Last change: Sat May 22 12:54:19 2010
Last generated: 2010-05-22 12:54
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.