source: Sophya/trunk/SigPredictor/lobelevshealpix.h@ 1185

Last change on this file since 1185 was 1152, checked in by ansari, 25 years ago

* empty log message *

  • Property svn:executable set to *
File size: 711 bytes
Line 
1#ifndef LobeLevSHealpix_H
2#define LobeLevSHealpix_H
3
4#include "meanlobe.h"
5#include "spherehealpix.h"
6
7class LobeLevSHealpix:public MeanFreqLobe
8{
9 public:
10 LobeLevSHealpix(char FileOflobeMap[],double angMax_degre, double MeanFreq_Hz);
11 ~LobeLevSHealpix();
12 const SphereHEALPix<float>& sphere() const { return *pSphere;}
13 protected:
14 virtual double ResolutionCurve(double angleShift) const
15 { return 1.; } //return (double) (1.+(angleShift/sigma/7.));
16
17 virtual double lobeResol() const
18 { return M_PI/(2*pSphere->SizeIndex()); } //Radian
19
20 virtual double weigthAmpl(const UnitVector& VInteg, const UnitVector& VP,
21 const UnitVector& VY) const;
22
23 SphereHEALPix<float>* pSphere;
24};
25
26
27#endif
Note: See TracBrowser for help on using the repository browser.