ROOT logo
#ifndef HGEOMFWALL_H
#define HGEOMFWALL_H

#include "hgeomset.h"

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

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