ROOT logo
#ifndef HGEOMCAVE_H
#define HGEOMCAVE_H

#include "hgeomset.h"
#include "TString.h"

class HGeomMedia;

class  HGeomCave : public HGeomSet {
protected:
  TString name;
public:
  HGeomCave();
  ~HGeomCave() {}
  const Char_t* getModuleName(Int_t) {return name.Data();}  
  Bool_t read(fstream&,HGeomMedia*);
  void addRefNodes();
  void write(fstream&);
  void print();
  ClassDef(HGeomCave,0) // Class for the geometry of CAVE
};

#endif  /* !HGEOMCAVE_H */
 hgeomcave.h:1
 hgeomcave.h:2
 hgeomcave.h:3
 hgeomcave.h:4
 hgeomcave.h:5
 hgeomcave.h:6
 hgeomcave.h:7
 hgeomcave.h:8
 hgeomcave.h:9
 hgeomcave.h:10
 hgeomcave.h:11
 hgeomcave.h:12
 hgeomcave.h:13
 hgeomcave.h:14
 hgeomcave.h:15
 hgeomcave.h:16
 hgeomcave.h:17
 hgeomcave.h:18
 hgeomcave.h:19
 hgeomcave.h:20
 hgeomcave.h:21
 hgeomcave.h:22
 hgeomcave.h:23