source: tags/release-1.6.1/src/Plotting/DuchampPlot.cc @ 1441

Last change on this file since 1441 was 1241, checked in by MatthewWhiting, 11 years ago

Ticket #195 - Large amount of code refactoring the plotting classes into separate ones with inheritance.

File size: 2.4 KB
Line 
1// -----------------------------------------------------------------------
2// DuchampPlot.cc: Definition of the base plotting 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 <duchamp/Plotting/DuchampPlot.hh>
29#include <duchamp/Utils/mycpgplot.hh>
30#include <string>
31#include <math.h>
32
33namespace duchamp {
34
35    namespace Plot {
36       
37        DuchampPlot::DuchampPlot()
38        {
39            this->paperWidth=a4width/inchToCm - 2*psHoffset;
40            this->aspectRatio = M_SQRT2;
41        }
42
43        DuchampPlot::DuchampPlot(const DuchampPlot& other)
44        {
45            this->operator=(other);
46        }
47
48        DuchampPlot& DuchampPlot::operator= (const DuchampPlot& other)
49        {
50            if(this == &other) return *this;
51            this->paperWidth  = other.paperWidth; 
52            this->paperHeight = other.paperHeight;
53            this->aspectRatio = other.aspectRatio;
54            this->identifier  = other.identifier; 
55            return *this;
56        }
57
58        int DuchampPlot::open(std::string pgDestination)
59        {
60            this->identifier = mycpgplot::mycpgopen(pgDestination);
61            if(this->identifier>0) cpgpap(this->paperWidth, this->aspectRatio);
62            return this->identifier;
63        }
64
65        void DuchampPlot::close()
66        {
67            cpgclos();
68        }
69
70        void  DuchampPlot::goToPlot()
71        {
72            cpgslct(this->identifier);
73        }             
74       
75
76    }
77
78}
Note: See TracBrowser for help on using the repository browser.