ROOT logo
#ifndef HGEOMTARGET_H
#define HGEOMTARGET_H

#include "hgeomset.h"

class  HGeomTarget : public HGeomSet {
protected:
  Char_t modName[2];  // name of module
  Char_t eleName[2];  // substring for elements in module
public:
  HGeomTarget();
  ~HGeomTarget() {}
  const Char_t* getModuleName(Int_t) {return modName;}
  const Char_t* getEleName(Int_t) {return eleName;}
  ClassDef(HGeomTarget,0) // Class for geometry of Target
};

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