This file is indexed.

/usr/share/doc/munipack/cmd.html is in munipack-doc 0.5.10-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
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- meta -->
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description" content="A general astronomical image processing software">
<meta name="author" content="Filip Hroch">
<link href="news_feed.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed" />
<link type="text/css" rel="stylesheet" href="munipack.css">
<link rel="shortcut icon" href="favicon.ico">
<title>Munipack ‒ Colour — Magnitude Diagram Tutorial</title>
</head>
<body>
<header>
<a href="munipack.html"><img src="title_logo.png" alt="Munipack's logo" class="head"></a>
<div class="headhead">
<div class="headtitle">
<a class="headtitle" href="munipack.html">Munipack</a>
<a class="headsubtitle" href="munipack.html">A general astronomical image processing software</a>
</div>
<ul class="menu">
  <li class="menu"><a href="docs.html" class="menu">Documents</a></li>
  <li class="menu"><a href="guide.html" class="menu">User guide</a></li>
</ul>
</div>
</header>

<h1>Colour — Magnitude Diagram</h1>

<p class="abstract">
How to create of a colour-magnitude (CMD) diagram which is a photometric
equivalent of the Hertzsprung-Russel diagram.
</p>

<h1>Open cluster M 67</h1>

<p>
Open cluster M 67 is an old galactic cluster with a differently
evolved stars which covers wide range of colour indexes.
All stars are approximately same old, but due to its different
initial masses and the fact that heavy stars gets older quickly,
we are observing the cluster members in different stages of evolution.
</p>


<h2>Sample Data</h2>

<p>
A sample data are available as 
<a href="ftp://munipack.physics.muni.cz/pub/munipack/munipack-data-m67.tar.gz">munipack-data-m67.tar.gz</a>. Use commands 
</p>
<pre>
$ cd /tmp
$ tar zxf munipack-data-m67.tar.gz
</pre>
<p>
to unpack it to a desired directory.
We will assume that the sample data are unpacked to <samp>/tmp</samp> directory
as <samp>/tmp/munipack-data-m67</samp>.
</p>

<p>
The sample data has been acquired at MonteBoo Observatory by group 
of author's students "Hrošátka". The flat-fields by ChM. Quality
of the observation is poor due to a light pollution by our urban neighbourhood.
</p>

<h2>Data Processing</h2>

<p>
To get CMD, follow these points:
</p>

<ol>
<li>Prepare images for photometric corrections as describes 
<a href="phcorrtut.html">Photometric Corrections Tutorial</a>.
<pre>
$ munipack dark -o d7.fits d7_*.fits
$ munipack dark -o d30.fits d30_*.fits

$ munipack flat -o fB.fits -dark d7.fits flat_*B.fits
$ munipack flat -o fV.fits -dark d7.fits flat_*V.fits
$ munipack flat -o fR.fits -dark d7.fits flat_*R.fits

$ munipack phcorr -dark d30.fits -flat fB.fits m67_*B.fits
$ munipack phcorr -dark d30.fits -flat fV.fits m67_*V.fits
$ munipack phcorr -dark d30.fits -flat fR.fits m67_*R.fits
</pre>

</li>
<li>Stars detection and photometry
<pre>
$ munipack find -th 10 -f 6 m67_*.fits
$ munipack aphot m67_*.fits
</pre>
Warnings like:
<pre>
Object at coordinates:   739.055908       94.7188416    
  Are you sure your bad pixel thresholds are all right?
  If so, then you need a larger outer sky radius.
           8          20        1762   84700.0000       3.39999995E+38
</pre>
are reported for stars near of border (when aperture lie outsdie
of image) and can be safety ignored.
</li>
<li>Search an astrometric catalogue (required for astrometric calibration)
<pre>
$ munipack cone -r 0.2 132.8 11.8
</pre>
</li>
<li>Astrometry calibration of all images
<pre>
$ munipack astrometry -c cone.fits m67_*.fits
</pre>
</li>
<li>
Sum of all images
<pre>
$ munipack kombine --rcen 132.8304 --dcen 11.7771 -o m67_B.fits m67_*B.fits
$ munipack kombine --rcen 132.8304 --dcen 11.7771 -o m67_V.fits m67_*V.fits
$ munipack kombine --rcen 132.8304 --dcen 11.7771 -o m67_R.fits m67_*R.fits
</pre>
</li>
<li>Aperture photometry of final frames
<pre>
$ munipack find -th 10 -f 6 m67_?.fits
$ munipack aphot m67_?.fits
</pre>
</li>
</ol>
<p class="li">
The files M67_*_MAG.fits contains the table:
</p>
<table>
<tr><th>α [J2000]</th><th>δ [J2000]</th><th>instrumental magnitude</th><th>std. deviation</th></tr>
<tr><td>132.8228301</td><td>11.7562805</td><td>7.62841</td><td>.00036</td></tr>
<tr><td></td><td></td><td></td><td></td></tr>
</table>
<p class="li">
To match and visualise data, <a href="http://www.star.bris.ac.uk/~mbt/topcat/">topcat</a>
(part of Virtual Observatory software) can be recommended.
</p>

<!--
</li>
</ol>
-->

<h2>Determination of Properties of M67</h2>
<p>
One can be easy compared with models tabulated in the article

<a href="http://adsabs.harvard.edu/abs/1994A%26AS..106..275B">
Theoretical isochrones from models with new radiative opacities,
   Bertelli G., Bressan A., Chiosi C., Fagotto F., Nasi E,
   Astron. Astrophys. Suppl. Ser. 106, 275 (1994)
</a>

tables can be downloaded here:

<a href="ftp://cdsarc.u-strasbg.fr/pub/cats/J/A+AS/106/275">
ftp://cdsarc.u-strasbg.fr/pub/cats/J/A+AS/106/275</a>
</p>

<figure>
<img src="M67cmd.png" alt="M67cmd.png" title="M 67">
<figcaption>Colour - magnitude diagram for M 67. 
The star track for 10 Gyr, Z=0.0080, Y=0.25 and 1 kpc.</figcaption>
</figure>

<p>
The models can be easy plotted and one can determine
basic astrophysical characteristics of M 67 open cluster:
</p>
<ul>
<li>chemical composition</li>
<li>age</li>
<li>distance</li>
</ul>

<h2>Notes</h2>

<p>
This is the outline of the real method used to determine the parameters
of clusters in astrophysics. The fitting of the main sequence
and the turning point gives an age estimation, at least as wishful thinking.
</p>


<p>
The presented method is focused on use of Munipack. Therefore
we are ignoring some astrophysical difficulties:
</p>
<ul>
<li>Some stars on the images may be not members of the cluster. Independent
    tests on base of proper motions or distance measurements should be used 
    to select only the right members.</li>
<li>The colours are affected by the interstellar extinction which
    deforms observational data. The extinction has different fluency 
    onto short- and long-wavelength fluxes. One can be mapped
    by using of tree filters together.</li>
<li>We are believing in theoretical models (which may be, generally,
    false idea).</li>
<li>The colour indexes <i>B-V,V-R</i> can be used to construction
of extinction diagram.</li>
<li>
Instrumental magnitudes are used. To get more precise results, use
<a href="man_phcal.html">photometric calibration</a> along with 
<a href="man_phfotran.html">Photometric System Transformation</a>.
</li>
</ul>

<h2>See Also</h2>
<p>
<a href="man_phcal.html">Photometry calibration</a>,
<a href="man_phfotran.html">Photometric System Transformation</a>,
<a href="dataform_photometry.html">Photometry Format</a>.
</p>

<footer>
<div style="float:left; margin-left:2em;">
Copyright &copy; 1997 – 2018
Filip Hroch (<a style="text-decoration: none" href="mailto:hroch@physics.muni.cz?Subject=Munipack" title="Author's Email"></a>), license <a href="http://www.gnu.org/licenses/gpl.html">GPLv3</a>.
</div>
<div style="float:right; margin-right:2em; margin-top:-0.2em;">
<a href="http://monteboo.blogspot.com/search/label/Munipack" title="Munipack on MonteBoo Blog"><img src="favicon-blogger.png" alt="Blogger"></a>
<a href="http://www.muni.cz/?lang=en" title="Masaryk University in Brno, Czech Republic"><img src="mu-logo.png" alt="Masaryk University"></a>
<a href="news_feed.xml" title="Munipack's Releases in Atom Syndication Format"><img src="Feed-icon.png" alt="Atom Feed"></a>
</div>
</footer>
</body>
</html>