ROOT logo
//*-- AUTHOR : Ilse Koenig
//*-- Created : 25/05/2010 by Ilse Koenig

//_HADES_CLASS_DESCRIPTION 
//////////////////////////////////////////////////////////////////////////////
// HOra2GeomObj
//
// Class used in Oracle interfaces for geometry parameter containers to keep
// internal identifiers for geometry objects
//
// The variable volType defines the type of volume:
//   M: Module 
//   R: Reference module
//   C: inner Component
//   I: inner copy Component
// The volume points are only read for types R and C
//////////////////////////////////////////////////////////////////////////////

#include "hora2geomobj.h"

ClassImp(HOra2GeomObj)

HOra2GeomObj::HOra2GeomObj(const Char_t* pName="", TObject* p=0,
                           Char_t vType='M', TObject* r=0) {
  SetName(pName);
  pObj=p;
  volType=vType;
  refObj=r;
  objId=-1;
  volId=-1;
  transId=-1;
}
 hora2geomobj.cc:1
 hora2geomobj.cc:2
 hora2geomobj.cc:3
 hora2geomobj.cc:4
 hora2geomobj.cc:5
 hora2geomobj.cc:6
 hora2geomobj.cc:7
 hora2geomobj.cc:8
 hora2geomobj.cc:9
 hora2geomobj.cc:10
 hora2geomobj.cc:11
 hora2geomobj.cc:12
 hora2geomobj.cc:13
 hora2geomobj.cc:14
 hora2geomobj.cc:15
 hora2geomobj.cc:16
 hora2geomobj.cc:17
 hora2geomobj.cc:18
 hora2geomobj.cc:19
 hora2geomobj.cc:20
 hora2geomobj.cc:21
 hora2geomobj.cc:22
 hora2geomobj.cc:23
 hora2geomobj.cc:24
 hora2geomobj.cc:25
 hora2geomobj.cc:26
 hora2geomobj.cc:27
 hora2geomobj.cc:28
 hora2geomobj.cc:29
 hora2geomobj.cc:30
 hora2geomobj.cc:31
 hora2geomobj.cc:32