ROOT logo
#ifndef HGEOMSTART_H
#define HGEOMSTART_H

#include "hgeomset.h"

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

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