#ifndef __DRCOPTMATLLF1_H__ #define __DRCOPTMATLLF1_H__ /*! \brief Class for optical material representation. In this case the glass N-LLF1 (extra light flint) from Schott. See http://www.schott.com/optics_devices/german/products/flash/abbediagramm_flash.html */ class DrcOptMatLLF1 : public DrcOptMatAbs { protected: //! Sellmeier coefficient for refractive index. double m_B1; //! Sellmeier coefficient for refractive index. double m_B2; //! Sellmeier coefficient for refractive index. double m_B3; //! Sellmeier coefficient for refractive index. double m_C1; //! Sellmeier coefficient for refractive index. double m_C2; //! Sellmeier coefficient for refractive index. double m_C3; //! Random generator. mutable TRandom m_ran; private: /*! \brief Auxiliary function for assignment operator and copy constructor.. \param s The object to copy. */ void copy(const DrcOptMatLLF1& s); public: //! Empty constructor. DrcOptMatLLF1(); /*! Copy constructor. /param Object to copy. */ DrcOptMatLLF1(const DrcOptMatLLF1& mat); /*! Assignment operator. /param Object to assign. */ DrcOptMatLLF1& operator=(const DrcOptMatLLF1& mat); // Implementation of pure virtual functions from base class. DrcOptMatLLF1* clone() const; double refIndex(const double lambda) const; double refIndexDeriv(const double lambda) const; bool absorptionFlag(double lambda, double length) const; }; #endif