//****************************************************************************** //** SCATMECH: Polarized Light Scattering C++ Class Library //** //** File: transmit.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_TRANSMIT_H #define SCATMECH_TRANSMIT_H #include "brdf.h" namespace SCATMECH { class Transmit_BRDF_Model : public BRDF_Model { public: DECLARE_MODEL(); DECLARE_PARAMETER(BRDF_Model_Ptr,model); protected: virtual MuellerMatrix mueller(); }; } #endif