[1463] | 1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
[1738] | 2 |
|
---|
| 3 | // ArchTOIPipe (C) CEA/DAPNIA/SPP IN2P3/LAL
|
---|
| 4 | // Eric Aubourg
|
---|
| 5 | // Christophe Magneville
|
---|
| 6 | // Reza Ansari
|
---|
[1739] | 7 | // $Id: toi2map.h,v 1.8 2001-11-08 17:47:23 cmv Exp $
|
---|
[1738] | 8 |
|
---|
[1463] | 9 | #ifndef TOI2MAP_H
|
---|
| 10 | #define TOI2MAP_H
|
---|
| 11 |
|
---|
| 12 | #include "toiprocessor.h"
|
---|
[1530] | 13 | #include "toiprocessor.h"
|
---|
[1463] | 14 | #include "spherehealpix.h"
|
---|
[1516] | 15 | #include "flagtoidef.h"
|
---|
| 16 | #include "xastropack.h"
|
---|
[1463] | 17 |
|
---|
| 18 | //-- Un projecteur de TOI sur une sphere Healpix
|
---|
[1516] | 19 | // Lecture de 3 TOI coord1,coord2,boloMuV
|
---|
| 20 | // Sortie pas de TOI, une (2) sphere(s) Healpix
|
---|
[1463] | 21 | //
|
---|
| 22 | // Structure generale :
|
---|
[1516] | 23 | // |---->Sphere
|
---|
| 24 | // |
|
---|
| 25 | // -----------
|
---|
[1498] | 26 | // toi Coord1In ---> | |
|
---|
| 27 | // toi Coord2In ---> | TOI2Map |
|
---|
[1516] | 28 | // toi BoloIn ---> | |
|
---|
| 29 | // -----------
|
---|
| 30 | // Gestion du type de coordonnees :
|
---|
| 31 | // Coord1In,Coord2In : soit Equatoriales (Alpha,Delta)
|
---|
| 32 | // soit Galactiques (GLong,GLat)
|
---|
| 33 | // Sortie sur une sphere en coordonnees Equatoriales ou Galactiques
|
---|
[1520] | 34 | // Si les CoordIn et les CoordOut sont equatoriales -> meme equinoxe!
|
---|
[1463] | 35 |
|
---|
| 36 | class TOI2Map : public TOIProcessor {
|
---|
| 37 | public:
|
---|
| 38 | TOI2Map(SphereHEALPix<r_8>* sph,SphereHEALPix<r_8>* wsph=NULL);
|
---|
| 39 | virtual ~TOI2Map();
|
---|
| 40 |
|
---|
[1516] | 41 | virtual void init(void);
|
---|
[1463] | 42 | virtual void run(void);
|
---|
[1516] | 43 |
|
---|
| 44 | // Coordonnees donnees en entree et en sortie
|
---|
| 45 | inline void SetEquinox(double actualyear=2000.)
|
---|
| 46 | {mActualYear = actualyear;}
|
---|
| 47 | inline void SetCoorIn(TypAstroCoord mfg=TypCoordGalStd)
|
---|
| 48 | {mTypCoorIn = mfg;}
|
---|
| 49 | inline void SetCoorOut(TypAstroCoord mfg=TypCoordGalStd)
|
---|
| 50 | {mTypCoorOut = mfg;}
|
---|
[1530] | 51 | // Test on flag value ? if yes, BAD sample have flag matching mBadFlag
|
---|
[1739] | 52 | inline void SetTestFlag(bool tflg=false, uint_8 badflg=FlgToiAll)
|
---|
[1530] | 53 | {mTFlag = tflg; mBadFlag = badflg;}
|
---|
| 54 | // Test on min value ? if yes, GOOD sample have value >= mValMin
|
---|
| 55 | // Test on max value ? if yes, GOOD sample have value <= mValMax
|
---|
| 56 | // Good values are (mValMin <= sample value <= mValMax)
|
---|
| 57 | // bounds are included
|
---|
| 58 | inline void SetTestMin(bool tmin=false, r_8 vmin=-1.e30)
|
---|
| 59 | {mTMin = tmin; mValMin = vmin;}
|
---|
| 60 | inline void SetTestMax(bool tmax=false, r_8 vmax=+1.e30)
|
---|
| 61 | {mTMax = tmax; mValMax = vmax;}
|
---|
| 62 | // Print
|
---|
| 63 | void Print(ostream & os);
|
---|
[1516] | 64 |
|
---|
[1463] | 65 | protected:
|
---|
| 66 | SphereHEALPix<r_8>* mSph;
|
---|
| 67 | SphereHEALPix<r_8>* mWSph;
|
---|
| 68 | bool mWSphInternal;
|
---|
[1530] | 69 |
|
---|
[1516] | 70 | TypAstroCoord mTypCoorIn, mTypCoorOut;
|
---|
[1463] | 71 | double mActualYear;
|
---|
[1530] | 72 |
|
---|
| 73 | bool mTFlag,mTMin,mTMax;
|
---|
[1536] | 74 | uint_8 mBadFlag;
|
---|
[1530] | 75 | r_8 mValMin,mValMax;
|
---|
[1463] | 76 | };
|
---|
| 77 |
|
---|
| 78 | #endif
|
---|