ROOT logo
#ifndef HORA2GEOMOBJ_H
#define HORA2GEOMOBJ_H

#include "TNamed.h"

class HOra2GeomObj : public TNamed {
public:
  TObject* pObj;            // pointer to object of type HModGeomPar or HGeomVolume
  Char_t   volType;         // M: Module, R: Reference module, C: inner Component
  TObject* refObj;          // pointer to the mother volume of a component
  Int_t    objId;           // id of the geometry volume in Oracle
  Int_t    volId;           // id of the volume points
  Int_t    transId;         // id of the volume transformation
  HOra2GeomObj(const Char_t*, TObject*, Char_t, TObject*);
  ~HOra2GeomObj() {}
  ClassDef(HOra2GeomObj,0) // Oracle interface storage class for geometry objects
};

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