Changeset 1114


Ignore:
Timestamp:
08/04/06 12:11:11 (18 years ago)
Author:
mar637
Message:

fixed indentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/RowAccumulator.h

    r1104 r1114  
    1010//
    1111//
     12#ifndef ASAPROWACCUMULATOR_H
     13#define ASAPROWACCUMULATOR_H
    1214
    1315#include <casa/aips.h>
     
    3537 ~RowAccumulator();
    3638
    37         /**
    38         * add a new "row" to the accumulator
    39         * @param v the spectrum
    40         * @param m the mask for the spectrum
    41         * @param tsys the Tsys corresponing to the spectrum
    42         * @param interval the intergration time
    43         * @param the time of the observation
    44         */
     39  /**
     40    * add a new "row" to the accumulator
     41    * @param v the spectrum
     42    * @param m the mask for the spectrum
     43    * @param tsys the Tsys corresponing to the spectrum
     44    * @param interval the intergration time
     45    * @param the time of the observation
     46    */
    4547  void add(const casa::Vector<casa::Float>& v,
    4648           const casa::Vector<casa::Bool>& m,
     
    4850           casa::Double interval,
    4951           casa::Double time);
    50         /**
    51         * Also set a user mask which get combined with the individual masks
    52         * from the spectra
    53         * @param m a boolean mask of teh same length as the spectrum
    54         */
     52  /**
     53    * Also set a user mask which get combined with the individual masks
     54    * from the spectra
     55    * @param m a boolean mask of teh same length as the spectrum
     56    */
    5557  void setUserMask(const casa::Vector<casa::Bool>& m);
    56         /**
    57         * Get the spectrum. Applies the normalisation (averaging)
    58         * @return the spectrum vector
    59         */
     58  /**
     59    * Get the spectrum. Applies the normalisation (averaging)
     60    * @return the spectrum vector
     61    */
    6062  casa::Vector<casa::Float> getSpectrum() const;
    61         /**
    62         * Get the Tsys. Applies the normalisation (averaging)
    63         * @return the Tsys vector
    64         */
     63  /**
     64    * Get the Tsys. Applies the normalisation (averaging)
     65    * @return the Tsys vector
     66    */
    6567  casa::Vector<casa::Float> getTsys() const;
    66         /**
    67         * Get the spectrum's mask. Applies the normalisation (averaging)
    68         * @return the mask vector
    69         */
     68  /**
     69    * Get the spectrum's mask. Applies the normalisation (averaging)
     70    * @return the mask vector
     71    */
    7072  casa::Vector<casa::Bool> getMask() const;
    71         /**
    72         * Get the total interval.
    73         * @return the integration time
    74         */
     73  /**
     74    * Get the total interval.
     75    * @return the integration time
     76    */
    7577  casa::Double getInterval() const;
    76         /**
    77         * Get the time of the observation. Retrieves the "mean" time.
    78         * @return the integration time
    79          */ 
     78  /**
     79    * Get the time of the observation. Retrieves the "mean" time.
     80    * @return the integration time
     81    */
    8082  casa::Double getTime() const;
    81         /**
    82         * Reset the acummulator to the state at construction.
    83         */
     83  /**
     84    * Reset the acummulator to the state at construction.
     85    */
    8486  void reset();
    8587
     
    107109
    108110}
     111#endif
Note: See TracChangeset for help on using the changeset viewer.