00001 #ifndef BDSGeometryInterface_h 00002 #define BDSGeometryInterface_h 1 00003 00004 #include "globals.hh" 00005 00006 class BDSGeometryInterface 00007 { 00008 public: 00009 BDSGeometryInterface(G4String filename); 00010 ~BDSGeometryInterface(); 00011 00012 void Optics(); 00013 void Survey(); 00014 00015 protected: 00016 00017 G4String itsFileName; 00018 00019 private: 00020 00021 }; 00022 00023 #endif