source: trunk/source/materials/include/G4OpticalSurface.hh @ 1102

Last change on this file since 1102 was 1058, checked in by garnier, 15 years ago

file release beta

File size: 6.2 KB
RevLine 
[822]1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
[1058]27// $Id: G4OpticalSurface.hh,v 1.12 2009/04/21 15:35:45 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-03-beta-cand-01 $
[822]29//
30//
31////////////////////////////////////////////////////////////////////////
32// G4OpticalSurface Definition
33////////////////////////////////////////////////////////////////////////
34//
35// File:        G4OpticalSurface.hh
36// Description: A optical surface class for use in G4OpBoundaryProcess
37// Version:     2.0
38// Created:     1997-06-26
39// Author:      Peter Gumplinger
40// Updated:     1999-10-29 add method and class descriptors
41// mail:        gum@triumf.ca
42//
43////////////////////////////////////////////////////////////////////////
44
45#ifndef G4OpticalSurface_h
46#define G4OpticalSurface_h 1
47
48/////////////
49// Includes
50/////////////
51
52#include "G4Types.hh"
53#include "G4SurfaceProperty.hh"
54
55// Class Description:
56// A optical surface class for use in the G4OpBoundaryProcess class.
57// Contains the enumerations: G4OpticalSurfaceFinish, G4OpticalSurfaceType,
58// and G4OpticalSurfaceModel.
59// Class Description - End:
60
61enum G4OpticalSurfaceFinish
62{
63   polished,                    // smooth perfectly polished surface
64   polishedfrontpainted,        // smooth top-layer (front) paint
65   polishedbackpainted,         // same is 'polished' but with a back-paint
66   ground,                      // rough surface
67   groundfrontpainted,          // rough top-layer (front) paint
68   groundbackpainted            // same as 'ground' but with a back-paint
69};
70
71enum G4OpticalSurfaceModel
72{
73   glisur,                      // original GEANT3 model
74   unified                      // UNIFIED model
75};
76
77class G4MaterialPropertiesTable;
78
79/////////////////////
80// Class Definition
81/////////////////////
82
83class G4OpticalSurface : public G4SurfaceProperty
84{
[1058]85  public: // With description
[822]86
[1058]87    ////////////////////////////////
88    // Constructor
89    ////////////////////////////////
[822]90
[1058]91    G4OpticalSurface(const G4String& name,
92                     G4OpticalSurfaceModel model = glisur,
93                     G4OpticalSurfaceFinish finish = polished,
94                     G4SurfaceType type = dielectric_dielectric,
95                     G4double value = 1.0);
96    // Constructor of an optical surface object.
[822]97
[1058]98  public: // Without description
[822]99
[1058]100    //////////////
101    // Constructors and destructor
102    //////////////
[822]103
[1058]104    G4OpticalSurface();
105    virtual ~G4OpticalSurface();
106    G4OpticalSurface(const G4OpticalSurface &right);
[986]107 
[1058]108    //////////////
109    // Operators
110    //////////////
[986]111 
[1058]112    const G4OpticalSurface & operator=(const G4OpticalSurface &right);
[986]113 
[1058]114    G4int operator==(const G4OpticalSurface &right) const;
115    G4int operator!=(const G4OpticalSurface &right) const;
[822]116
[1058]117    ////////////
118    // Methods
119    ////////////
[822]120
[1058]121  public: // With description
[822]122
[1058]123    const G4OpticalSurfaceFinish& GetFinish() const { return theFinish; }
124    // Returns the optical surface finish.
125    void SetFinish(const G4OpticalSurfaceFinish& finish) { theFinish = finish; }
126    // Sets the optical surface finish.
[822]127
[1058]128    const G4OpticalSurfaceModel& GetModel() const { return theModel; }
129    // Returns the optical surface model used.
130    void SetModel(const G4OpticalSurfaceModel& model) { theModel = model; }
131    // Sets the optical surface model to be followed.
[822]132
[1058]133    G4double GetSigmaAlpha() const { return sigma_alpha; }
134    // Returns an unified model surface parameter.
135    void     SetSigmaAlpha(const G4double s_a) { sigma_alpha = s_a; }
136    // Sets an unified model surface parameter.
[822]137
[1058]138    G4double GetPolish() const { return polish; }
139    // Returns the optical surface polish type.
140    void     SetPolish(const G4double plsh) { polish=plsh; }
141    // Sets the optical surface polish type.
[822]142
[1058]143    G4MaterialPropertiesTable* GetMaterialPropertiesTable() const
144                                   { return theMaterialPropertiesTable; }
145    // Retrieves the pointer of the G4MaterialPropertiesTable
146    // attached to optical surface.
[822]147
[1058]148    void SetMaterialPropertiesTable(G4MaterialPropertiesTable *anMPT)
149                                   { theMaterialPropertiesTable = anMPT; }
150    // Attaches a G4MaterialPropertiesTable to the optical surface.
[822]151
[1058]152    void DumpInfo() const;
153    // Prints information about the optical surface.
[822]154
[1058]155  private:
[822]156
[1058]157    // ------------------
158    // Basic data members ( To define an optical surface)
159    // ------------------
[822]160
[1058]161    G4OpticalSurfaceModel theModel;          // Surface model
162    G4OpticalSurfaceFinish theFinish;        // Surface finish
[822]163
[1058]164    G4double sigma_alpha;           // The sigma of micro-facet polar angle
165    G4double polish;                // Polish parameter in glisur model
[822]166
[1058]167    G4MaterialPropertiesTable* theMaterialPropertiesTable;
[822]168};
169
170#endif /* G4OpticalSurface_h */
Note: See TracBrowser for help on using the repository browser.