| 
            Last change
 on this file since 2755 was             1371, checked in by ansari, 25 years ago           | 
        
        
          | 
             
MAJ documentation, Makefile, ... - Reza 5/1/2001 
 
           | 
        
        
          | 
            File size:
            513 bytes
           | 
        
      
      
| Line |   | 
|---|
| 1 | //   Geometry handling class 
 | 
|---|
| 2 | //        R. Ansari , G. Le Meur   2000
 | 
|---|
| 3 | // DAPNIA/SPP (Saclay) / CEA    LAL - IN2P3/CNRS  (Orsay)
 | 
|---|
| 4 | 
 | 
|---|
| 5 | #ifndef GEOMETRY_SEEN
 | 
|---|
| 6 | #define GEOMETRY_SEEN
 | 
|---|
| 7 | 
 | 
|---|
| 8 | 
 | 
|---|
| 9 | #include "unitvector.h"
 | 
|---|
| 10 | 
 | 
|---|
| 11 | namespace SOPHYA {  
 | 
|---|
| 12 | 
 | 
|---|
| 13 | /*!
 | 
|---|
| 14 |   \class SOPHYA::Geometry
 | 
|---|
| 15 |   \ingroup Samba
 | 
|---|
| 16 |   Base class (pure virtual) for geometry handling and coordinate
 | 
|---|
| 17 |   system transforms
 | 
|---|
| 18 | */
 | 
|---|
| 19 | 
 | 
|---|
| 20 | class Geometry
 | 
|---|
| 21 | {
 | 
|---|
| 22 | public: 
 | 
|---|
| 23 | Geometry() {;}
 | 
|---|
| 24 | virtual ~Geometry() {;}
 | 
|---|
| 25 | virtual UnitVector  ConvToSphere(double psi) const = 0;
 | 
|---|
| 26 | };
 | 
|---|
| 27 | 
 | 
|---|
| 28 | } // namespace SOPHYA
 | 
|---|
| 29 | 
 | 
|---|
| 30 | #endif
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.