source: tags/release-1.2.2/src/PixelMap/ChanMap.cc

Last change on this file was 570, checked in by MatthewWhiting, 15 years ago

Merging the pixelmap-refactor changes back into the trunk.

File size: 2.5 KB
Line 
1// -----------------------------------------------------------------------
2// ChanMap.cc: Member functions for ChanMap class.
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
28#include <iostream>
29#include <duchamp/PixelMap/Voxel.hh>
30#include <duchamp/PixelMap/Scan.hh>
31#include <duchamp/PixelMap/Object2D.hh>
32#include <duchamp/PixelMap/Object3D.hh>
33#include <duchamp/PixelMap/ChanMap.hh>
34#include <vector>
35
36namespace PixelInfo
37{
38
39  ChanMap::ChanMap()
40  {
41    this->itsZ = -1;
42    this->itsObject = Object2D();
43  }
44
45  ChanMap::ChanMap(const ChanMap& m){
46    operator=(m);
47  }
48
49  ChanMap& ChanMap::operator= (const ChanMap& m)
50  {
51    if(this == &m) return *this;
52    this->itsZ=m.itsZ;
53    this->itsObject=m.itsObject;
54    return *this;
55  }
56
57  void ChanMap::addOffsets(long xoff, long yoff, long zoff)
58  {
59    this->itsZ += zoff;
60    this->itsObject.addOffsets(xoff,yoff);
61  }
62 
63  bool operator< (ChanMap lhs, ChanMap rhs)
64  {
65    /// @details This only acts on the channel number.
66    return (lhs.itsZ<rhs.itsZ);
67  }
68
69  ChanMap operator+ (ChanMap lhs, ChanMap rhs)
70  {
71    ///  @details If they are the same channel, add the Objects,
72    ///  otherwise return a blank ChanMap.
73   
74    ChanMap newmap;
75    if(lhs.itsZ==rhs.itsZ){
76      newmap.itsZ = lhs.itsZ;
77      newmap.itsObject = lhs.itsObject + rhs.itsObject;
78    }
79    return newmap;
80  }
81 
82
83}
Note: See TracBrowser for help on using the repository browser.