source: Sophya/trunk/ArchTOIPipe/ProcWSophya/map2toi.h@ 1496

Last change on this file since 1496 was 1463, checked in by cmv, 24 years ago

map2toi et toi2map rz+cecile+cmv 11/4/2001

File size: 915 bytes
Line 
1// This may look like C code, but it is really -*- C++ -*-
2#ifndef MAP2TOI_H
3#define MAP2TOI_H
4
5#include "toiprocessor.h"
6#include "spherehealpix.h"
7
8//-- Un generateur de TOI a partir d'une sphere et de 2 TOIs alpha,delta
9// Lecture de 2 TOI alpha,delta et d'une Sphere Healpix
10// Sortie de 3 TOI alpha,delta,boloMuV
11//
12// Structure generale :
13// (les alpha[0,360[,delta[-90,90] sont en degres decimaux)
14// Sphere ---- |
15// |
16// -----------
17// toi AlphaIn ---> | | ---> toi AlphaOut
18// | Map2TOI | ---> toi DeltaOut
19// toi DeltaIn ---> | | ---> toi BoloOut
20// -----------
21
22class Map2TOI : public TOIProcessor {
23public:
24 Map2TOI(SphereHEALPix<r_8>& sph);
25 virtual ~Map2TOI();
26
27 virtual void init(void);
28 virtual void run(void);
29
30protected:
31 SphereHEALPix<r_8>& mSph;
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.