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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDMathWrapper.h

    r107 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 _SDMATHWRAPPER_H
    32 #define _SDMATHWRAPPER_H
     31#ifndef SDMATHWRAPPER_H
     32#define SDMATHWRAPPER_H
    3333
    3434#include <vector>
     
    5454
    5555  SDMemTableWrapper scale(const SDMemTableWrapper& in,
    56                              Float factor) {
     56                             casa::Float factor) {
    5757    return SDMemTableWrapper(SDMath::multiply(in.getCP(),factor));
    5858  }
    5959
    6060  SDMemTableWrapper add(const SDMemTableWrapper& in,
    61                         Float offset) {
     61                        casa::Float offset) {
    6262    return SDMemTableWrapper(SDMath::add(in.getCP(), offset));
    6363  }
     
    6565  SDMemTableWrapper hanning(const SDMemTableWrapper& in) {
    6666    return SDMemTableWrapper(SDMath::hanning(in.getCP()));
    67   }
    68 
    69   SDMemTableWrapper baseline(const SDMemTableWrapper& in,
    70                              const std::string& fitexpr,
    71                              const std::vector<bool>& mask) {
    72     return SDMath::baseline(in.getCP(), fitexpr, mask);
    7367  }
    7468
Note: See TracChangeset for help on using the changeset viewer.