#ifndef __DRCOPTREFLNONE_H__ #define __DRCOPTREFLNONE_H__ /*! \brief Class for reflectivity of surfaces. Defines the reflectivity of balck surface, that is no reflectivity. */ class DrcOptReflNone : public DrcOptReflAbs { public: // implementation of abstract base class function DrcOptReflNone* clone() const; /*! \brief Reflectivity of surface used for mirror surfaces or surfacec with internal reflection. \param ph The photon \param normal Normal vector of surface */ const Drc::Reflectivity reflectivity(DrcPhoton& ph, XYZVector normal) const; }; #endif