mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [
git repo
]
Loading...
Searching...
No Matches
fitsHeader.cpp
Go to the documentation of this file.
1
/** \file fitsHeader.cpp
2
* \brief Implementation of a class to work with a FITS header
3
* \ingroup fits_processing_files
4
* \author Jared R. Males (jaredmales@gmail.com)
5
*
6
*/
7
8
//***********************************************************************//
9
// Copyright 2015-2022 Jared R. Males (jaredmales@gmail.com)
10
//
11
// This file is part of mxlib.
12
//
13
// mxlib is free software: you can redistribute it and/or modify
14
// it under the terms of the GNU General Public License as published by
15
// the Free Software Foundation, either version 3 of the License, or
16
// (at your option) any later version.
17
//
18
// mxlib is distributed in the hope that it will be useful,
19
// but WITHOUT ANY WARRANTY; without even the implied warranty of
20
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21
// GNU General Public License for more details.
22
//
23
// You should have received a copy of the GNU General Public License
24
// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25
//***********************************************************************//
26
27
#include "
ioutils/fits/fitsHeader.hpp
"
28
29
namespace
mx
30
{
31
namespace
fits
32
{
33
34
fitsHeader::fitsHeader
()
35
{
36
}
37
38
fitsHeader::fitsHeader
(
const
fitsHeader
&head )
39
{
40
operator=
( head );
41
}
42
43
fitsHeader::~fitsHeader
()
44
{
45
clear
();
46
}
47
48
fitsHeader
&
fitsHeader::operator=
(
const
fitsHeader
&head )
49
{
50
cards
= head.
cards
;
51
52
headerIterator
it =
cards
.begin();
53
54
cardMap
.clear();
55
while
( it !=
cards
.end() )
56
{
57
cardMap
.insert( std::pair<std::string, headerIterator>( it->keyword(), it ) );
58
++it;
59
}
60
61
return
*
this
;
62
}
63
64
fitsHeader::headerIterator
fitsHeader::begin
()
65
{
66
return
cards
.begin();
67
}
68
69
fitsHeader::headerIterator
fitsHeader::end
()
70
{
71
return
cards
.end();
72
}
73
74
fitsHeader::headerIterator
fitsHeader::iterator
(
const
std::string &keyword )
75
{
76
return
cardMap
.find( keyword )->second;
77
}
78
79
bool
fitsHeader::empty
()
80
{
81
return
cards
.empty();
82
}
83
84
size_t
fitsHeader::size
()
85
{
86
return
cards
.size();
87
}
88
89
void
fitsHeader::clear
()
90
{
91
cards
.clear();
92
cardMap
.clear();
93
}
94
95
size_t
fitsHeader::count
(
const
std::string &keyword )
96
{
97
return
cardMap
.count( keyword );
98
}
99
100
void
fitsHeader::erase
(
const
std::string &keyword )
101
{
102
if
( keyword ==
"COMMENT"
|| keyword ==
"HISTORY"
)
103
{
104
return
;
105
}
106
headerIterator
it;
107
it = (
cardMap
.find( keyword ) )->second;
// trying to fool codacy
108
cardMap
.erase( keyword );
109
cards
.erase( it );
110
}
111
112
void
fitsHeader::erase
(
headerIterator
it )
113
{
114
mapIterator
mit =
cardMap
.find( it->keyword() );
115
116
if
( it->keyword() ==
"COMMENT"
|| it->keyword() ==
"HISTORY"
)
117
{
118
while
( mit->second->keyword() == it->keyword() && it->comment() != mit->second->comment() )
119
++mit;
120
}
121
cardMap
.erase( mit );
122
cards
.erase( it );
123
}
124
125
void
fitsHeader::eraseStandardTop
()
126
{
127
128
headerIterator
it =
begin
(), nit;
129
130
int
n = 0;
131
while
( it !=
end
() )
132
{
133
nit = it;
134
++nit;
135
if
( it->keyword() ==
"SIMPLE"
|| it->keyword() ==
"BITPIX"
|| it->keyword() ==
"NAXIS"
||
136
it->keyword() ==
"NAXIS1"
|| it->keyword() ==
"NAXIS2"
|| it->keyword() ==
"NAXIS3"
||
137
it->keyword() ==
"EXTEND"
|| it->keyword() ==
"BZERO"
|| it->keyword() ==
"BSCALE"
||
138
it->keyword() ==
"LONGSTRN"
)
139
{
140
erase
( it );
141
}
142
143
if
( it->keyword() ==
"COMMENT"
)
144
{
145
if
( it->comment().find(
"FITS (Flexible Image"
) != std::string::npos )
146
erase
( it );
147
else
if
( it->comment().find(
"and Astrophysics'"
) != std::string::npos )
148
erase
( it );
149
}
150
151
if
( nit ==
end
() )
152
break
;
153
it = nit;
154
++n;
155
}
156
}
157
158
void
fitsHeader::append
(
const
fitsHeaderCard
& card )
159
{
160
// First check if duplicate key
161
if
(
cardMap
.count( card.
keyword
() ) > 0 )
162
{
163
if
( card.
type
() != fitsType<fitsCommentType>() && card.
type
() != fitsType<fitsHistoryType>() )
164
{
165
std::cerr <<
"attempt to duplicate keyword: "
<< card.
keyword
() <<
"\n"
;
166
return
;
167
}
168
}
169
170
// Now insert in list
171
cards
.push_back( card );
172
173
// Then add to the Map.
174
headerIterator
insertedIt =
cards
.end();
175
--insertedIt;
176
cardMap
.insert( std::pair<std::string, headerIterator>( card.
keyword
(), insertedIt ) );
177
}
178
179
void
fitsHeader::append
(
fitsHeader
&head )
180
{
181
headerIterator
it;
182
183
for
( it = head.
begin
(); it != head.
end
(); ++it )
184
{
185
append
( *it );
186
}
187
}
188
189
void
fitsHeader::append
(
const
std::string &k )
190
{
191
append
(
fitsHeaderCard
( k ) );
192
}
193
194
void
fitsHeader::insert_before
(
headerIterator
it,
fitsHeaderCard
card )
195
{
196
// First check if duplicate key
197
if
(
cardMap
.count( card.
keyword
() ) > 0 )
198
{
199
if
( card.
type
() != fitsType<fitsCommentType>() && card.
type
() != fitsType<fitsHistoryType>() )
200
{
201
std::cerr <<
"attempt to duplicate keyword: "
<< card.
keyword
() <<
"\n"
;
202
return
;
203
}
204
}
205
206
// Now insert in list
207
headerIterator
insertedIt =
cards
.insert( it, card );
208
209
// Then add to the Map.
210
cardMap
.insert( std::pair<std::string, headerIterator>( card.
keyword
(), insertedIt ) );
211
}
212
213
void
fitsHeader::insert_after
(
headerIterator
it,
fitsHeaderCard
card )
214
{
215
// First check if duplicate key
216
if
(
cardMap
.count( card.
keyword
() ) > 0 )
217
{
218
if
( card.
type
() != fitsType<fitsCommentType>() && card.
type
() != fitsType<fitsHistoryType>() )
219
{
220
std::cerr <<
"attempt to duplicate keyword:"
<< card.
keyword
() <<
"\n"
;
221
return
;
222
}
223
}
224
225
// Now insert in list
226
headerIterator
insertedIt =
cards
.insert( ++it, card );
227
228
// Then add to the Map.
229
cardMap
.insert( std::pair<std::string, headerIterator>( card.
keyword
(), insertedIt ) );
230
}
231
232
fitsHeaderCard
&
fitsHeader::operator[]
(
const
std::string &keyword )
233
{
234
headerIterator
it;
235
236
// If not found, append it.
237
if
(
cardMap
.find( keyword ) ==
cardMap
.end() )
238
{
239
append
( keyword );
240
}
241
242
it =
cardMap
.find( keyword )->second;
243
244
return
*it;
245
}
246
247
const
fitsHeaderCard
&
fitsHeader::operator[]
(
const
std::string &keyword )
const
248
{
249
if
(
cardMap
.find( keyword ) ==
cardMap
.end() )
250
{
251
std::cerr <<
"Fits header card with keyword: "
<< keyword <<
" not found.\n"
;
252
}
253
254
headerIterator
it =
cardMap
.find( keyword )->second;
255
256
return
*it;
257
}
258
259
void
fitsHeaderGitStatus
(
fitsHeader
&head,
const
std::string &repoName,
const
char
*sha1,
int
modified )
260
{
261
std::string hist =
"Git status for "
+ repoName +
":"
;
262
head.
append
(
""
, fitsHistoryType(), hist );
263
264
hist =
" sha1="
;
265
hist += sha1;
266
if
( modified )
267
hist +=
", modified"
;
268
269
head.
append
(
""
, fitsHistoryType(), hist );
270
}
271
272
}
// namespace fits
273
}
// namespace mx
mx::fits::fitsHeaderCard
Class to manage the three components of a FITS header card.
Definition
fitsHeaderCard.hpp:57
mx::fits::fitsHeaderCard::keyword
const std::string & keyword() const
Get the keyword.
Definition
fitsHeaderCard.cpp:635
mx::fits::fitsHeaderCard::type
int type() const
Get the type.
Definition
fitsHeaderCard.cpp:1123
mx::fits::fitsHeader
Class to manage a complete fits header.
Definition
fitsHeader.hpp:51
mx::fits::fitsHeader::count
size_t count(const std::string &keyword)
Get number of cards with a given keyword.
Definition
fitsHeader.cpp:95
mx::fits::fitsHeader::~fitsHeader
~fitsHeader()
Destructor.
Definition
fitsHeader.cpp:43
mx::fits::fitsHeader::headerIterator
std::list< fitsHeaderCard >::iterator headerIterator
The iterator type for the cards list.
Definition
fitsHeader.hpp:55
mx::fits::fitsHeader::fitsHeader
fitsHeader()
Default c'tor.
Definition
fitsHeader.cpp:34
mx::fits::fitsHeader::operator[]
fitsHeaderCard & operator[](const std::string &keyword)
Card access by keyword operator.
Definition
fitsHeader.cpp:232
mx::fits::fitsHeader::begin
headerIterator begin()
Get iterator to the beginning of the cards list.
Definition
fitsHeader.cpp:64
mx::fits::fitsHeader::clear
void clear()
Clear all cards from the header.
Definition
fitsHeader.cpp:89
mx::fits::fitsHeader::cards
std::list< fitsHeaderCard > cards
The storage for the FITS header cards.
Definition
fitsHeader.hpp:65
mx::fits::fitsHeader::eraseStandardTop
void eraseStandardTop()
Erase the standard entries at the top of the header.
Definition
fitsHeader.cpp:125
mx::fits::fitsHeader::iterator
headerIterator iterator(const std::string &keyword)
Get iterator pointing to a specific element.
Definition
fitsHeader.cpp:74
mx::fits::fitsHeader::erase
void erase(const std::string &keyword)
Erase card by keyword.
Definition
fitsHeader.cpp:100
mx::fits::fitsHeader::insert_before
void insert_before(headerIterator it, fitsHeaderCard card)
Insert a card before another card.
Definition
fitsHeader.cpp:194
mx::fits::fitsHeader::size
size_t size()
Get number of cards currently stored in the header.
Definition
fitsHeader.cpp:84
mx::fits::fitsHeader::cardMap
std::unordered_multimap< std::string, headerIterator > cardMap
This multimap allows for fast lookup by keyword.
Definition
fitsHeader.hpp:70
mx::fits::fitsHeader::mapIterator
std::unordered_multimap< std::string, headerIterator >::iterator mapIterator
The iterator type for the card map.
Definition
fitsHeader.hpp:58
mx::fits::fitsHeader::operator=
fitsHeader & operator=(const fitsHeader &head)
Assignment.
Definition
fitsHeader.cpp:48
mx::fits::fitsHeader::empty
bool empty()
Test whether the header is empty.
Definition
fitsHeader.cpp:79
mx::fits::fitsHeader::append
void append(const fitsHeaderCard &card)
Append a fitsHeaderCard to the end of the header.
Definition
fitsHeader.cpp:158
mx::fits::fitsHeader::insert_after
void insert_after(headerIterator it, fitsHeaderCard card)
Insert a card after another card.
Definition
fitsHeader.cpp:213
mx::fits::fitsHeader::end
headerIterator end()
Get iterator to the end of the cards list.
Definition
fitsHeader.cpp:69
fitsHeader.hpp
Declares and defines a class to work with a FITS header.
mx::fits::fitsHeaderGitStatus
void fitsHeaderGitStatus(fitsHeader &head, const std::string &repoName, const char *sha1, int modified)
Write the status of a Git repository to HISTORY in a FITS header.
Definition
fitsHeader.cpp:259
mx
The mxlib c++ namespace.
Definition
mxError.hpp:106
source
ioutils
fits
fitsHeader.cpp
Generated on Wed Mar 5 2025 10:09:16 for mxlib by
1.9.8