//////////////////////////////////////////////////////////////////////// /// \class RAT::geo::SNOAVGeoSolid /// /// \brief Builds the complete sno vessel from inherent single GEANT G4VSolid /// /// \author Aksel Hallin /// /// REVISION HISTORY:\n /// 2014-04-17 - New file. \n /// /// \detail SNOAVGeoSolid solid factory. //////////////////////////////////////////////////////////////////////// #ifndef __RAT_geo_SNOAV_hh__ #define __RAT_geo_SNOAV_hh__ #include namespace RAT { namespace geo { class SNOAVGeoSolid : public GeoSolid { public: /// Construct a SNOAV solid, name the factory sphere SNOAVGeoSolid() : GeoSolid( "SNOAV" ) { } /// Return the solid shape, as defined in the table /// /// @param[in] name the prefix for the solid name /// @param[in] table is the ratdb table defining the SNOAV /// @return The geant4 solid for the SNOAV virtual G4VSolid* Construct( const std::string& name, DBLinkPtr ) const; }; } //::geo } //::RAT #endif