| 73 | 
  | 
    void setM(int theM) { M = theM; }; | 
| 74 | 
  | 
    int getM() { return M; } | 
| 75 | 
  | 
     | 
| 76 | 
– | 
    void setCoefficient(ComplexType co) {coefficient = co;} | 
| 77 | 
– | 
    ComplexType getCoefficient() {return coefficient;} | 
| 76 | 
  | 
    ComplexType getValueAt(RealType costheta, RealType phi); | 
| 77 | 
  | 
     | 
| 78 | 
  | 
  protected: | 
| 79 | 
  | 
     | 
| 80 | 
  | 
    RealType LegendreP (int l, int m, RealType x); | 
| 81 | 
  | 
    RealType Legendre (int l, int m, RealType x); | 
| 82 | 
+ | 
    RealType Ptilde (int l, int m, RealType x); | 
| 83 | 
  | 
    RealType mpow (int j); | 
| 84 | 
  | 
    RealType Fact (int j); | 
| 85 | 
  | 
     | 
| 86 | 
  | 
    int L; | 
| 87 | 
  | 
    int M; | 
| 89 | 
– | 
    ComplexType coefficient; | 
| 88 | 
  | 
     | 
| 89 | 
  | 
  }; | 
| 90 | 
  | 
} |