This file is indexed.

/usr/include/astrotcl/WCSRep.h is in skycat 3.1.2+starlink1~b+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// -*-c++-*-
#ifndef _WCS_h_
#define _WCS_h_
/*
 * E.S.O. - VLT project / ESO Archive
 *
 * "@(#) $Id: WCSRep.h,v 1.1.1.1 2009/03/31 14:11:53 cguirao Exp $" 
 *
 * WCSRep.h - declarations for class WCS, a reference counted wrapper class
 *         for managing world coordinates for an image. The implementation
 *         class is a subclass of the abstract WCSRep class.
 *
 * who             when       what
 * --------------  --------   ----------------------------------------
 * Allan Brighton  30 Sep 96  Created 
 *                 17 MAr 98  Made WCSRep an abstract class, to allow
 *                            new WCS implementations. The old WCSRep
 *                            class was renamed to SAOWCS.
 * pbiereic        11/10/99   Added deltset()
 * abrighto        02/01/06   Renamed WCS.h to WCSRep.h to avoid name conflict
 *                            with wcs.h on file systems that ignore case
 */


#include "WorldCoords.h"

/* 
 * This class is used internally for reference counting.
 * The public interface is through the WCS class.
 */
class WCSRep {
friend class WCS;
private:
    int refcnt_;		// reference count
    int status_;		// status after constructor

public:
     // constructor
    WCSRep();

    // destructor
    virtual ~WCSRep();

    // return class name as a string
    virtual const char* classname() const = 0;

    // Return 1 if WCS info is available, else 0 
    virtual int isWcs() const = 0;

    // return the world coordinates as a string for the given ximage coords
    virtual char* pix2wcs(double x, double y, char* buf, int bufsz, int hms_flag = 1) const = 0;

    // return the world coords (in degrees, as 2 doubles) for the ximage coords
    virtual int pix2wcs(double x, double y, double& ra, double& dec) const = 0;

    // get the image coordinates for the given world coords
    virtual int wcs2pix(double ra, double dec, double &x, double &y) const = 0;

    // get the image coordinates distance for the given world coords distance in deg
    virtual int wcs2pixDist(double ra, double dec, double &x, double &y) const = 0;

    // get the world coords distance in deg for the given image coordinates distance
    virtual int pix2wcsDist(double x, double y, double& ra, double& dec) const = 0;

    // set up the WCS structure from the given information about the image
    virtual int set(double ra, double dec, 
		double secpix, 
		double xrefpix, double yrefpix,
		int nxpix, int nypix, 
		double rotate, 
		int equinox, double epoch,
		const char* proj) = 0;

    // set rotation and scaling
    virtual int deltset(double cdelt1, double cdelt2, double rotation) = 0;

    // reset the center of the WCS structure
    virtual int shift(double ra, double dec, double equinox) = 0;

    // Return the WCS equinox
    virtual double equinox() const = 0;

    // Return the WCS equinox as a string
    virtual const char* equinoxStr() const = 0;

    // return the WCS epoch
    virtual double epoch() const = 0;
   
    // return the rotation angle in degrees
    virtual double rotate() const = 0;
  
    // return the width, height, radius of the image in arcmin
    virtual double width() const = 0;
    virtual double height() const = 0;
    virtual double radius() const = 0;
    
    // return the number of world coordinate arcsecs per pixel
    virtual double secPix() const = 0;
    virtual double xSecPix() const = 0;
    virtual double ySecPix() const = 0;

    // return the world coordinates of the center of the image 
    virtual WorldCoords center() const = 0;
    
    // return image dimensions
    virtual int pixWidth() const = 0;
    virtual int pixHeight() const = 0;

    // Return the WCS distance between the 2 given WCS points in arcsec */
    virtual double dist(double ra0, double dec0, double ra1, double dec1) const = 0;

    // return the x,y reference pixel values
    virtual double xRefPix() const = 0;
    virtual double yRefPix() const = 0;

    // return the projection type
    virtual const char* projection() const = 0;

    // member access
    virtual int status() const {return status_;}
    virtual void status(int s) {status_ = s;}
};


/* 
 * This class defines the public interface. It uses reference
 * counting with the above class to make it easier to share copies
 * of this object.
 */
class WCS {
private:
    WCSRep* rep_;		// internal representation for reference counting

public:
    // default constructor: initialize to null
    WCS() : rep_(NULL) {}

    // copy constructor
    WCS(const WCS&);

    // Constructor, from a pointer to a subclass of WCSRep.
    // The memory is managed by this class after this call.
    WCS(WCSRep* rep) : rep_(rep) {}

    // destructor
    ~WCS();

    // assignment
    WCS& operator=(const WCS&);

    // Return 1 if WCS info is available, else 0 
    // (always check this before calling any other methods)
    int isWcs() const {return rep_ && rep_->isWcs();}

    // return the world coordinates string for the given ximage coords
    // member access
    int pixWidth() const {return rep_->pixWidth();}
    int pixHeight() const {return rep_->pixHeight();}

    // Return the WCS distance between the 2 given WCS points in arcsec */
    double dist(double ra0, double dec0, double ra1, double dec1) const {
	return rep_->dist(ra0, dec0, ra1, dec1);
    }
    
    char* pix2wcs(double x, double y, char* buf, int bufsz, int hms_flag = 1) const {
	return rep_->pix2wcs(x, y, buf, bufsz, hms_flag);
    }

    // return the world coords (in degrees, as 2 doubles) for the ximage coords
    int pix2wcs(double x, double y, double& ra, double& dec) const {
	return rep_->pix2wcs(x, y, ra, dec);
    }

    // get the image coordinates for the given world coords
    int wcs2pix(double ra, double dec, double &x, double &y) const {
	return rep_->wcs2pix(ra, dec, x, y);
    }

    // get the image coordinates distance for the given world coords distance in deg
    int wcs2pixDist(double ra, double dec, double &x, double &y) const {
	return rep_->wcs2pixDist(ra, dec, x, y);
    }

    // get the world coords distance in deg for the given image coordinates distance
    int pix2wcsDist(double x, double y, double& ra, double& dec) const {
	return rep_->pix2wcsDist(x, y, ra, dec);
    }

    // set up the WCS structure from the given information about the image
    int set(double ra, double dec, 
		double secpix, 
		double xrefpix, double yrefpix,
		int nxpix, int nypix, 
		double rotate, 
		int equinox, double epoch,
		const char* proj) {
	return rep_->set(ra, dec, secpix, xrefpix, yrefpix, nxpix, nypix, rotate, 
			 equinox, epoch, proj);
    }

    // set rotation and scaling
    int deltset(double cdelt1, double cdelt2, double rotation) {
        return rep_->deltset(cdelt1, cdelt2, rotation);
    }

    // reset the center of the WCS structure
    int shift(double ra, double dec, double equinox) {
	return rep_->shift(ra, dec, equinox);
    }

    // Return the WCS equinox
    double equinox() const {return rep_->equinox();}
    const char* equinoxStr() const {return rep_->equinoxStr();}

    // return the WCS epoch
    double epoch() const {return rep_->epoch();}
   
    // return the rotation angle in degrees
    double rotate() const {return rep_->rotate();}

    // return the width, height, radius of the image in arcmin
    double width() const {return rep_->width();}
    double height() const {return rep_->height();}
    double radius() const {return rep_->radius();}
    
    // return the number of world coordinate arcsecs per pixel
    double secPix() const {return rep_->secPix();}
    double xSecPix() const {return rep_->xSecPix();}
    double ySecPix() const {return rep_->ySecPix();}

    // return the x,y reference pixel values
    double xRefPix() const {return rep_->xRefPix();}
    double yRefPix() const {return rep_->yRefPix();}

    // return the projection type
    const char* projection() const {return rep_->projection();}

    // return the world coordinates of the center of the image 
    WorldCoords center() const {return rep_->center();}

    // note: if status is non-zero, the other methods are undefined
    int status() const {return rep_ ? rep_->status() : 1;}

    // return true if the WCS object has been initialized
    int initialized() const {return rep_ ? 1 : 0;}

    // return a pointer to the internal class
    WCSRep* rep() const {return rep_;}
};

#endif /* _WCS_h_ */