source: Sophya/trunk/SophyaPI/PIext/nomskymapadapter.cc@ 3279

Last change on this file since 3279 was 2992, checked in by ansari, 19 years ago

protection limite n_print_max ds Print() pour skymapadapter.cc , Reza 23 Juin 2006

File size: 11.3 KB
Line 
1#include "sopnamsp.h"
2#include "machdefs.h"
3#include <stdlib.h>
4#include <math.h>
5#include <typeinfo>
6#include <iostream>
7#include <string>
8#include <complex>
9
10#include "datatype.h"
11
12#include "nomskymapadapter.h"
13#include "skymap.h"
14#include "pitvmaad.h"
15#include "complexios.h"
16
17// Valeur par defaut pour la projection MolleWeide, en dehors de la sphere
18static double _prjmol_defval = 0.;
19void Set_Project_Mol_DefVal(double def)
20{
21 _prjmol_defval = def;
22 return;
23}
24
25// Classe array adapter pour localMap
26template <class T>
27class LocalMapArrAdapter : public P2DArrayAdapter {
28public:
29 LocalMapArrAdapter(LocalMap<T>* lm, bool d=false) :
30 P2DArrayAdapter(lm->SizeX(), lm->SizeY())
31 { ad = d; map = lm; }
32
33 virtual ~LocalMapArrAdapter() { if (ad) delete map; }
34 virtual double Value(int ix, int iy) { return((*map)(ix, iy)); }
35
36protected :
37 bool ad;
38 LocalMap<T>* map;
39};
40
41/* --Methode-- */
42DECL_TEMP_SPEC /* equivalent a template <> , pour SGI-CC en particulier */
43double LocalMapArrAdapter< complex<float> >::Value(int ix, int iy)
44{
45double re,im;
46re = (*map)(iy, ix).real();
47im = (*map)(iy, ix).imag();
48return(sqrt(re*re+im*im));
49}
50/* --Methode-- */
51DECL_TEMP_SPEC /* equivalent a template <> , pour SGI-CC en particulier */
52double LocalMapArrAdapter< complex<double> >::Value(int ix, int iy)
53{
54double re,im;
55re = (*map)(iy, ix).real();
56im = (*map)(iy, ix).imag();
57return(sqrt(re*re+im*im));
58}
59
60//----------------------------------------------------------------
61// Class Adaptateur d'objet (Pour NamedObjMgr) d'objet PixelMap<T>
62//----------------------------------------------------------------
63
64
65/* --Methode-- */
66template <class T>
67NOMAdapter_PixelMap<T>::NOMAdapter_PixelMap(PixelMap<T> * o)
68 : NObjMgrAdapter(o)
69{
70mMap = o;
71}
72
73/* --Methode-- */
74template <class T>
75NOMAdapter_PixelMap<T>::~NOMAdapter_PixelMap()
76{
77}
78
79/* --Methode-- */
80template <class T>
81NObjMgrAdapter* NOMAdapter_PixelMap<T>::Clone(AnyDataObj* o)
82{
83PixelMap<T>* m = dynamic_cast<PixelMap<T> *>(o);
84if (m) return ( new NOMAdapter_PixelMap<T>(m) );
85return ( new NObjMgrAdapter(o) );
86}
87
88/* --Methode-- */
89template <class T>
90string NOMAdapter_PixelMap<T>::GetDataObjType()
91{
92string type = "PixelMap< ";
93LocalMap<T>* lm = dynamic_cast< LocalMap<T> * >(mMap);
94if (lm != NULL) type = "LocalMap< ";
95SphereThetaPhi<T>* st = dynamic_cast< SphereThetaPhi<T> * >(mMap);
96if (st != NULL) type = "SphereThetaPhi< ";
97SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap);
98if (sg != NULL) type = "SphereHEALPix< ";
99SphereECP<T>* se = dynamic_cast< SphereECP<T> * >(mMap);
100if (se != NULL) type = "SphereECP< ";
101
102// type += DecodeTypeIdName(typeid(T).name());
103type += DataTypeInfo<T>::getTypeName();
104type += " > ";
105return(type);
106}
107
108/* --Methode-- */
109template <class T>
110AnyDataObj* NOMAdapter_PixelMap<T>::CloneDataObj(bool share)
111{
112LocalMap<T>* lm = dynamic_cast< LocalMap<T> * >(mMap);
113if (lm != NULL) return( new LocalMap<T>(*lm, share) );
114SphereThetaPhi<T>* st = dynamic_cast< SphereThetaPhi<T> * >(mMap);
115if (st != NULL) return( new SphereThetaPhi<T>(*st, share) );
116SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap);
117if (sg != NULL) return( new SphereHEALPix<T>(*sg, share) );
118SphereECP<T>* se = dynamic_cast< SphereECP<T> * >(mMap);
119if (se != NULL) return( new SphereECP<T>(*se, share) );
120return(NULL);
121}
122
123
124/* --Methode-- */
125template <class T>
126void NOMAdapter_PixelMap<T>::SavePPF(POutPersist& pos, string const & nom)
127{
128LocalMap<T>* lm = dynamic_cast< LocalMap<T> * >(mMap);
129if (lm != NULL) {
130 FIO_LocalMap<T> fio(lm);
131 fio.Write(pos, nom);
132 return;
133 }
134SphereThetaPhi<T>* st = dynamic_cast< SphereThetaPhi<T> * >(mMap);
135if (st != NULL) {
136 FIO_SphereThetaPhi<T> fio(st);
137 fio.Write(pos, nom);
138 return;
139 }
140SphereHEALPix<T>* sg = dynamic_cast< SphereHEALPix<T> * >(mMap);
141if (sg != NULL) {
142 FIO_SphereHEALPix<T> fio(sg);
143 fio.Write(pos, nom);
144 return;
145 }
146SphereECP<T>* se = dynamic_cast< SphereECP<T> * >(mMap);
147if (se != NULL) {
148 FIO_SphereECP<T> fio(se);
149 fio.Write(pos, nom);
150 return;
151 }
152string s = typeid(*mMap).name();
153cout << "NOMAdapter_PixelMap<T>::SavePPF() - Error : Not supported for " << s << endl;
154}
155
156/* --Methode-- */
157template <class T>
158void NOMAdapter_PixelMap<T>::Print(ostream& os, int lev)
159{
160mMap->Show(os);
161if (lev > 0) {
162 T moy, sig;
163 MeanSig(moy, sig);
164 os << "PixelMap: Mean= " << moy << " Sig2= " << sig << endl;
165}
166if (lev > 1) {
167 int_4 nprmx = 10*lev;
168 if (nprmx > mMap->NbPixels()) nprmx = mMap->NbPixels();
169 os << "[k] (Theta,Phi) : PixVal" << endl;
170 double t, p;
171 for(int k=0; k<nprmx; k++) {
172 mMap->PixThetaPhi(k, t, p);
173 os << "[" << k << "] (" << t << "," << p << ") : " << mMap->PixVal(k) << endl;
174 }
175}
176
177}
178
179// -- Fonction pour convertir un X,Y en Theta-Phi sur projection MolleWeide --
180char * _SphMollweideProj_XY2ThetaPhi(P2DArrayAdapter * aa, int ix, int iy);
181
182/* --Methode-- */
183template <class T>
184P2DArrayAdapter* NOMAdapter_PixelMap<T>::Get2DArray(string & opt)
185{
186LocalMap<T>* lm = dynamic_cast< LocalMap<T> * >(mMap);
187if (lm != NULL) return(new LocalMapArrAdapter<T>(lm, false));
188int nr = 250;
189int nc = 500;
190SphereECP<T>* se = dynamic_cast< SphereECP<T> * >(mMap);
191size_t olen = opt.length();
192if ((se != NULL) && (opt.find("ecparray") < olen)) {
193 // On veut la carte bi-dim complete de la sphere ECP
194 TMatrix<T> * mtxecp = new TMatrix<T>(se->GetPixelArray(), true); // on partage les donnees
195 POTMatrixAdapter<T> * potmtxecp = new POTMatrixAdapter<T>(mtxecp, true);
196 if (opt.find("ecpscaledeg") < olen) // Echelle angulaire en degre
197 potmtxecp->DefineXYCoordinates(se->MinPhi()*180./M_PI, se->MinTheta()*180./M_PI,
198 se->DeltaPhi()*180./M_PI, se->DeltaTheta()*180./M_PI);
199 else if (opt.find("ecpscalerad") < olen) // Echelle angulaire en radian
200 potmtxecp->DefineXYCoordinates(se->MinPhi(), se->MinTheta(), se->DeltaPhi(), se->DeltaTheta());
201
202 return ( potmtxecp );
203}
204SphericalMap<T>* sm = dynamic_cast< SphericalMap<T> *>(mMap);
205if (sm != NULL) { nr = sqrt(0.75*mMap->NbPixels()); nc = 2*nr; }
206TMatrix<T> * mtx = new TMatrix<T>(nr, nc);
207Project_Mol(*mtx, (T)_prjmol_defval);
208POTMatrixAdapter<T> * potma = new POTMatrixAdapter<T>(mtx, true);
209potma->SetInfoStringFunction(_SphMollweideProj_XY2ThetaPhi);
210return ( potma );
211}
212
213/* --Methode-- */
214template <class T>
215NTupleInterface* NOMAdapter_PixelMap<T>::GetNTupleInterface(bool& adel)
216{
217adel = true;
218return( new NTupInt_PixelMap<T>(mMap) );
219}
220
221/* --Methode-- */
222template <class T>
223void NOMAdapter_PixelMap<T>::MeanSig(T& gmoy, T& gsig)
224{
225 gmoy=0.;
226 gsig = 0.;
227 T valok;
228 for(int k=0; k<mMap->NbPixels(); k++) {
229 valok = (*mMap)(k);
230 gmoy += valok; gsig += valok*valok;
231 }
232 gmoy /= (T)mMap->NbPixels();
233 gsig = gsig/(T)mMap->NbPixels() - gmoy*gmoy;
234
235}
236
237/* --Methode-- */
238template <class T>
239void NOMAdapter_PixelMap<T>::Project_Mol(TMatrix<T> & mtx, T defval)
240{
241 r_8 xa, yd, teta,phi, facteur;
242 int_4 l,c,k;
243 int_4 nl = mtx.NRows();
244 int_4 nc = mtx.NCols();
245 mtx = defval; // On met tout a defval
246// cout << " NRows= " << nl << " NCols= " << nc << endl;
247 for(l=0; l<nl; l++) {
248 yd = (r_8)(l+0.5)/(r_8)nl-0.5;
249 facteur=2.*M_PI/sin(acos((double)yd*2));
250 teta = (yd+0.5)*Pi;
251 // teta = (0.5-yd)*M_PI;
252 for(c=0; c<nc; c++) {
253 xa = (r_8)(c+0.5)/(r_8)nc-0.5;
254 phi = xa*facteur+M_PI;
255 if ( (phi <= 2*M_PI) && (phi >= 0.) ) {
256 k = mMap->PixIndexSph(teta, phi);
257 mtx(l,c) = (*mMap)(k);
258 }
259 }
260 }
261}
262
263static char m_buff[128];
264char * _SphMollweideProj_XY2ThetaPhi(P2DArrayAdapter * aa, int ix, int iy)
265{
266 r_8 xa, yd, teta,phi, facteur;
267 int_4 nl = aa->YSize();
268 int_4 nc = aa->XSize();
269 int l, c;
270 aa->IJ2xy(ix, iy, c, l);
271 yd = (r_8)(l+0.5)/(r_8)nl-0.5;
272 facteur=2.*M_PI/sin(acos((double)yd*2));
273 teta = (yd+0.5)*Pi;
274 xa = (r_8)(c+0.5)/(r_8)nc-0.5;
275 phi = xa*facteur+M_PI;
276 if ( (phi <= 2*M_PI) && (phi >= 0.) )
277 sprintf(m_buff,"(l,b=%5.1f,%5.1f)", phi*180./M_PI, 90.-teta*180./M_PI);
278 else
279 sprintf(m_buff,"(l,b=?,?)");
280
281 return (m_buff);
282}
283
284// -------------------------------------------------------------
285
286/* --Methode-- */
287template <class T>
288NTupInt_PixelMap<T>::NTupInt_PixelMap(PixelMap<T>* m)
289{
290mMap = m;
291}
292
293/* --Methode-- */
294template <class T>
295NTupInt_PixelMap<T>::~NTupInt_PixelMap()
296{
297}
298
299/* --Methode-- */
300template <class T>
301sa_size_t NTupInt_PixelMap<T>::NbLines() const
302{
303return( mMap->NbPixels() );
304}
305
306/* --Methode-- */
307template <class T>
308sa_size_t NTupInt_PixelMap<T>::NbColumns() const
309{
310return(8);
311}
312
313/* --Methode-- */
314template <class T>
315r_8* NTupInt_PixelMap<T>::GetLineD(sa_size_t n) const
316{
317int i;
318if ((n < 0) || (n >= (int)(mMap->NbPixels()) ))
319 for(i=0; i<8; i++) mRet[i] = 0.;
320else {
321 double teta,phi;
322 mMap->PixThetaPhi(n, teta, phi);
323 mRet[0] = n; mRet[1] = mMap->PixVal(n);
324 mRet[2] = mRet[1]; mRet[3] = 0.;
325 mRet[4] = mRet[1]; mRet[5] = 0.;
326 mRet[6] = teta; mRet[7] = phi;
327 }
328return(mRet);
329}
330
331/* --Methode-- */
332template <class T>
333string NTupInt_PixelMap<T>::VarList_C(const char* nx) const
334{
335string nomx;
336if (nx) nomx = nx;
337else nomx = "_xh_";
338string vardec = "double i,k,val,real,imag,mod,phas,teta,phi; \n";
339vardec += "i = " + nomx + "[0]; k = " + nomx + "[0]; val = " + nomx + "[1]; \n";
340vardec += "real = " + nomx + "[2]; imag = " + nomx + "[3]; \n";
341vardec += "mod = " + nomx + "[4]; phas = " + nomx + "[5]; \n";
342vardec += "teta = " + nomx + "[6]; phi = " + nomx + "[7]; \n";
343return(vardec);
344}
345
346
347DECL_TEMP_SPEC /* equivalent a template <> , pour SGI-CC en particulier */
348r_8* NTupInt_PixelMap< complex<float> >::GetLineD(sa_size_t n) const
349{
350int i;
351if ((n < 0) || (n >= (int)(mMap->NbPixels()) ))
352 for(i=0; i<8; i++) mRet[i] = 0.;
353else {
354 double teta,phi;
355 mMap->PixThetaPhi(n, teta, phi);
356 mRet[0] = n;
357 mRet[2] = mMap->PixVal(n).real(); mRet[3] = mMap->PixVal(n).imag();
358 mRet[1] = mRet[4] = sqrt(mRet[2]*mRet[2]+mRet[3]*mRet[3]);
359 mRet[5] = atan2(mRet[3], mRet[2]);
360 mRet[6] = teta; mRet[7] = phi;
361 }
362return(mRet);
363}
364
365DECL_TEMP_SPEC /* equivalent a template <> , pour SGI-CC en particulier */
366r_8* NTupInt_PixelMap< complex<double> >::GetLineD(sa_size_t n) const
367{
368int i;
369if ((n < 0) || (n >= (int)(mMap->NbPixels()) ))
370 for(i=0; i<8; i++) mRet[i] = 0.;
371else {
372 double teta,phi;
373 mMap->PixThetaPhi(n, teta, phi);
374 mRet[0] = n;
375 mRet[2] = mMap->PixVal(n).real(); mRet[3] = mMap->PixVal(n).imag();
376 mRet[1] = mRet[4] = sqrt(mRet[2]*mRet[2]+mRet[3]*mRet[3]);
377 mRet[5] = atan2(mRet[3], mRet[2]);
378 mRet[6] = teta; mRet[7] = phi;
379 }
380return(mRet);
381}
382
383
384#ifdef __CXX_PRAGMA_TEMPLATES__
385#pragma define_template NOMAdapter_PixelMap<int_4>
386#pragma define_template NOMAdapter_PixelMap<r_4>
387#pragma define_template NOMAdapter_PixelMap<r_8>
388#pragma define_template NOMAdapter_PixelMap< complex<float> >
389#pragma define_template NOMAdapter_PixelMap< complex<double> >
390#pragma define_template NTupInt_PixelMap<int_4>
391#pragma define_template NTupInt_PixelMap<r_4>
392#pragma define_template NTupInt_PixelMap<r_8>
393#pragma define_template NTupInt_PixelMap< complex<float> >
394#pragma define_template NTupInt_PixelMap< complex<double> >
395#endif
396
397#if defined(ANSI_TEMPLATES)
398template class NOMAdapter_PixelMap<int_4>;
399template class NOMAdapter_PixelMap<r_4>;
400template class NOMAdapter_PixelMap<r_8>;
401template class NOMAdapter_PixelMap< complex<float> >;
402template class NOMAdapter_PixelMap< complex<double> >;
403template class NTupInt_PixelMap<int_4>;
404template class NTupInt_PixelMap<r_4>;
405template class NTupInt_PixelMap<r_8>;
406template class NTupInt_PixelMap< complex<float> >;
407template class NTupInt_PixelMap< complex<double> >;
408#endif
Note: See TracBrowser for help on using the repository browser.