This file is indexed.

/usr/include/relion-1.4/src/Healpix_2.15a/datatypes.h is in librelion-dev-common 1.4+dfsg-3ubuntu1.

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
/*
 *  This file is part of Healpix_cxx.
 *
 *  Healpix_cxx is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Healpix_cxx is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Healpix_cxx; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 *  For more information about HEALPix, see http://healpix.jpl.nasa.gov
 */

/*
 *  Healpix_cxx is being developed at the Max-Planck-Institut fuer Astrophysik
 *  and financially supported by the Deutsches Zentrum fuer Luft- und Raumfahrt
 *  (DLR).
 */

/*
 *  This file defines various platform-independent data types.
 *  If any of the requested types is not available, compilation aborts
 *  with an error (unfortunately a rather obscure one).
 *
 *  Copyright (C) 2004 Max-Planck-Society
 *  Author: Martin Reinecke
 */

#ifndef PLANCK_DATATYPES_H
#define PLANCK_DATATYPES_H

#include <string>
#include "src/Healpix_2.15a/message_error.h"

// Template magic to select the proper data types. These templates
// should not be used outside this file.

template <typename T, bool equalSize> struct sizeChooserHelper
  { typedef void TYPE; };

template <typename T> struct sizeChooserHelper<T,true>
  { typedef T TYPE; };

template <typename T1, typename T2, typename T3> struct sizeChooserHelper2
  { typedef T1 TYPE; };

template <typename T2, typename T3> struct sizeChooserHelper2 <void, T2, T3>
  { typedef T2 TYPE; };

template <typename T3> struct sizeChooserHelper2 <void, void, T3>
  { typedef T3 TYPE; };

template <> struct sizeChooserHelper2 <void, void, void>
  { };

template <int sz, typename T1, typename T2=char, typename T3=char>
  struct sizeChooser
  {
  typedef typename sizeChooserHelper2
    <typename sizeChooserHelper<T1,sizeof(T1)==sz>::TYPE,
     typename sizeChooserHelper<T2,sizeof(T2)==sz>::TYPE,
     typename sizeChooserHelper<T3,sizeof(T3)==sz>::TYPE >::TYPE TYPE;
  };

typedef signed char int8;
typedef unsigned char uint8;

typedef sizeChooser<2, short, int>::TYPE
  int16;
typedef sizeChooser<2, unsigned short, unsigned int>::TYPE
  uint16;

typedef sizeChooser<4, int, long, short>::TYPE
  int32;
typedef sizeChooser<4, unsigned int, unsigned long, unsigned short>::TYPE
  uint32;

typedef sizeChooser<8, long, long long>::TYPE
  int64;
typedef sizeChooser<8, unsigned long, unsigned long long>::TYPE
  uint64;

typedef sizeChooser<4, float, double>::TYPE
  float32;
typedef sizeChooser<8, double, long double>::TYPE
  float64;

// mapping of types to integer constants
enum { PLANCK_INT8    =  0,
       PLANCK_UINT8   =  1,
       PLANCK_INT16   =  2,
       PLANCK_UINT16  =  3,
       PLANCK_INT32   =  4,
       PLANCK_UINT32  =  5,
       PLANCK_INT64   =  6,
       PLANCK_UINT64  =  7,
       PLANCK_FLOAT32 =  8,
       PLANCK_FLOAT64 =  9,
       PLANCK_BOOL    = 10,
       PLANCK_STRING  = 11 };

template<typename T> struct typehelper {};

template<> struct typehelper<int8>
  { enum { id=PLANCK_INT8 }; };
template<> struct typehelper<uint8>
  { enum { id=PLANCK_UINT8 }; };
template<> struct typehelper<int16>
  { enum { id=PLANCK_INT16 }; };
template<> struct typehelper<uint16>
  { enum { id=PLANCK_UINT16 }; };
template<> struct typehelper<int32>
  { enum { id=PLANCK_INT32 }; };
template<> struct typehelper<uint32>
  { enum { id=PLANCK_UINT32 }; };
template<> struct typehelper<int64>
  { enum { id=PLANCK_INT64 }; };
template<> struct typehelper<uint64>
  { enum { id=PLANCK_UINT64 }; };
template<> struct typehelper<float32>
  { enum { id=PLANCK_FLOAT32 }; };
template<> struct typehelper<float64>
  { enum { id=PLANCK_FLOAT64 }; };
template<> struct typehelper<bool>
  { enum { id=PLANCK_BOOL }; };
template<> struct typehelper<std::string>
  { enum { id=PLANCK_STRING }; };

inline int type2size (int type)
  {
  switch (type)
    {
    case PLANCK_INT8   : return 1;
    case PLANCK_UINT8  : return 1;
    case PLANCK_INT16  : return 2;
    case PLANCK_UINT16 : return 2;
    case PLANCK_INT32  : return 4;
    case PLANCK_UINT32 : return 4;
    case PLANCK_INT64  : return 8;
    case PLANCK_UINT64 : return 8;
    case PLANCK_FLOAT32: return 4;
    case PLANCK_FLOAT64: return 8;
    case PLANCK_BOOL   : return 1;
    case PLANCK_STRING : return 1;
    default: throw Message_error ("unsupported data type");
    }
  }

inline int string2type(const std::string &type)
  {
  if (type=="FLOAT64") return PLANCK_FLOAT64;
  if (type=="FLOAT32") return PLANCK_FLOAT32;
  if (type=="INT8")    return PLANCK_INT8;
  if (type=="UINT8")   return PLANCK_UINT8;
  if (type=="INT16")   return PLANCK_INT16;
  if (type=="UINT16")  return PLANCK_UINT16;
  if (type=="INT32")   return PLANCK_INT32;
  if (type=="UINT32")  return PLANCK_UINT32;
  if (type=="INT64")   return PLANCK_INT64;
  if (type=="UINT64")  return PLANCK_UINT64;
  if (type=="BOOL")    return PLANCK_BOOL;
  if (type=="STRING")  return PLANCK_STRING;
  throw Message_error ("unknown data type "+type);
  }

inline const char *type2string (int type)
  {
  switch (type)
    {
    case PLANCK_INT8   : return "INT8";
    case PLANCK_UINT8  : return "UINT8";
    case PLANCK_INT16  : return "INT16";
    case PLANCK_UINT16 : return "UINT16";
    case PLANCK_INT32  : return "INT32";
    case PLANCK_UINT32 : return "UINT32";
    case PLANCK_INT64  : return "INT64";
    case PLANCK_UINT64 : return "UINT64";
    case PLANCK_FLOAT32: return "FLOAT32";
    case PLANCK_FLOAT64: return "FLOAT64";
    case PLANCK_BOOL   : return "BOOL";
    case PLANCK_STRING : return "STRING";
    default: throw Message_error ("unsupported data type");
    }
  }

template<typename T> inline const char *type2typename ()
  { return "unknown type"; }
template<> inline const char *type2typename<signed char> ()
  { return "signed char"; }
template<> inline const char *type2typename<unsigned char> ()
  { return "unsigned char"; }
template<> inline const char *type2typename<short> ()
  { return "short"; }
template<> inline const char *type2typename<unsigned short> ()
  { return "unsigned short"; }
template<> inline const char *type2typename<int> ()
  { return "int"; }
template<> inline const char *type2typename<unsigned int> ()
  { return "unsigned int"; }
template<> inline const char *type2typename<long> ()
  { return "long"; }
template<> inline const char *type2typename<unsigned long> ()
  { return "unsigned long"; }
template<> inline const char *type2typename<long long> ()
  { return "long long"; }
template<> inline const char *type2typename<unsigned long long> ()
  { return "unsigned long long"; }
template<> inline const char *type2typename<float> ()
  { return "float"; }
template<> inline const char *type2typename<double> ()
  { return "double"; }
template<> inline const char *type2typename<bool> ()
  { return "bool"; }
template<> inline const char *type2typename<std::string> ()
  { return "std::string"; }

#endif