source: Sophya/trunk/SophyaLib/Samba/geometry.h@ 1683

Last change on this file since 1683 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
11namespace 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
20class Geometry
21{
22public:
23Geometry() {;}
24virtual ~Geometry() {;}
25virtual UnitVector ConvToSphere(double psi) const = 0;
26};
27
28} // namespace SOPHYA
29
30#endif
Note: See TracBrowser for help on using the repository browser.