Last change
on this file since 1656 was 1353, checked in by mar637, 18 years ago |
added explicit keyword for single arument constructors
|
File size:
1.0 KB
|
Rev | Line | |
---|
[910] | 1 | //
|
---|
| 2 | // C++ Interface: STPolStokes
|
---|
| 3 | //
|
---|
| 4 | // Description:
|
---|
| 5 | //
|
---|
| 6 | //
|
---|
| 7 | // Author: Malte Marquarding <Malte.Marquarding@csiro.au>, (C) 2006
|
---|
| 8 | //
|
---|
| 9 | // Copyright: See COPYING file that comes with this distribution
|
---|
| 10 | //
|
---|
| 11 | //
|
---|
| 12 | #ifndef ASAPSTPOLSTOKES_H
|
---|
| 13 | #define ASAPSTPOLSTOKES_H
|
---|
| 14 |
|
---|
| 15 | #include "Factory.h"
|
---|
| 16 | #include "STPol.h"
|
---|
| 17 |
|
---|
| 18 | namespace asap {
|
---|
| 19 |
|
---|
| 20 | /**
|
---|
| 21 | The stokes representation of polarisation
|
---|
| 22 |
|
---|
| 23 | @author Malte Marquarding
|
---|
| 24 | */
|
---|
| 25 | class STPolStokes : public STPol
|
---|
| 26 | {
|
---|
| 27 | public:
|
---|
| 28 | STPolStokes() {}
|
---|
| 29 |
|
---|
[1353] | 30 | explicit STPolStokes(const casa::Matrix<casa::Float>& specs)
|
---|
[910] | 31 | { setSpectra(specs); }
|
---|
| 32 |
|
---|
| 33 | ~STPolStokes();
|
---|
| 34 |
|
---|
| 35 | static Factory<STPol,STPolStokes> myFactory;
|
---|
| 36 |
|
---|
| 37 | virtual casa::Vector<casa::Float> getCircular( casa::uInt index );
|
---|
| 38 |
|
---|
| 39 | virtual casa::Vector<casa::Float> getStokes( casa::uInt index);
|
---|
| 40 |
|
---|
| 41 | virtual casa::Vector<casa::Float> getLinPol( casa::uInt index);
|
---|
| 42 |
|
---|
| 43 | virtual casa::Vector<casa::Float> getLinear( casa::uInt index );
|
---|
| 44 |
|
---|
| 45 | //virtual void rotatePhase( casa::Float phase );
|
---|
| 46 | //virtual void rotateLinPolPhase( casa::Float phase );
|
---|
| 47 | //virtual void invertPhase( casa::Float phase );
|
---|
| 48 |
|
---|
| 49 | };
|
---|
| 50 |
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.