Changeset 125 for trunk/src/MathUtils.h


Ignore:
Timestamp:
12/10/04 14:54:54 (19 years ago)
Author:
mar637
Message:

Moved to casa namespace.
Adjusted the copyright to be ATNF.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/MathUtils.h

    r81 r125  
    33//#---------------------------------------------------------------------------
    44//# Copyright (C) 2004
    5 //# Malte Marquarding, ATNF
     5//# ATNF
    66//#
    77//# This program is free software; you can redistribute it and/or modify it
     
    2929//# $Id:
    3030//#---------------------------------------------------------------------------
    31 #ifndef _MATHUTILS_H
    32 #define _MATHUTILS_H
     31#ifndef MATHUTILS_H
     32#define MATHUTILS_H
    3333
    3434#include <casa/aips.h>
    3535#include <casa/Arrays/Vector.h>
    3636
     37namespace mathutil {
     38
    3739template <class T>
    38 void hanning(Vector<T>& out, Vector<Bool>& outmask,
    39              const Vector<T>& in, const Vector<Bool>& mask,
    40              Bool relaxed=False, Bool ignoreOther=False);
     40void hanning(casa::Vector<T>& out, casa::Vector<casa::Bool>& outmask,
     41             const casa::Vector<T>& in, const casa::Vector<casa::Bool>& mask,
     42             casa::Bool relaxed=False, casa::Bool ignoreOther=False);
     43
     44};
    4145
    4246#endif
Note: See TracChangeset for help on using the changeset viewer.