//****************************************************************************** //** SCATMECH: Polarized Light Scattering C++ Class Library //** //** File: crough.h //** //** Thomas A. Germer //** Optical Technology Division, National Institute of Standards and Technology //** 100 Bureau Dr. Stop 8443; Gaithersburg, MD 20899-8443 //** Phone: (301) 975-2876; FAX: (301) 975-6991 //** Email: thomas.germer@nist.gov //** //** Version: 6.00 (February 2008) //** //****************************************************************************** #ifndef SCATMECH_CROUGH_H #define SCATMECH_CROUGH_H #include "rough.h" namespace SCATMECH { // // Correlated_Roughness_BRDF_Model is a Roughness_BRDF_Model that calculates // the scattering from a single thin film with correlated roughness. // class Correlated_Roughness_BRDF_Model : public Roughness_BRDF_Model { public: DECLARE_MODEL(); // The thickness of the film (in units of length) DECLARE_PARAMETER(double,thickness); // Dielectric function of the film DECLARE_PARAMETER(dielectric_function,film); protected: // Routines that return the Mueller and Jones Matrices... JonesMatrix jones(); }; } // namespace SCATMECH #endif