source: trunk/MagicSoft/Mars/mgeom/MGeomCamCT1.cc@ 4996

Last change on this file since 4996 was 2521, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 9.0 KB
Line 
1/* ======================================================================== *\
2!
3! *
4! * This file is part of MARS, the MAGIC Analysis and Reconstruction
5! * Software. It is distributed to you in the hope that it can be a useful
6! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
7! * It is distributed WITHOUT ANY WARRANTY.
8! *
9! * Permission to use, copy, modify and distribute this software and its
10! * documentation for any purpose is hereby granted without fee,
11! * provided that the above copyright notice appear in all copies and
12! * that both that copyright notice and this permission notice appear
13! * in supporting documentation. It is provided "as is" without express
14! * or implied warranty.
15! *
16!
17!
18! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
19! Author(s): Harald Kornmayer 1/2001
20!
21! Copyright: MAGIC Software Development, 2000-2003
22!
23!
24\* ======================================================================== */
25
26/////////////////////////////////////////////////////////////////////////////
27//
28// MGeomCamCT1
29//
30// This class stores the geometrz information of the CT1 camera.
31// The next neighbor information comes from a table, the geometry layout
32// is calculated (for Algorithm see CreateCam
33//
34////////////////////////////////////////////////////////////////////////////
35#include "MGeomCamCT1.h"
36
37#include <math.h> // floor
38
39/*
40 #include "MLog.h"
41 #include "MLogManip.h"
42 */
43
44#include "MGeomPix.h"
45
46ClassImp(MGeomCamCT1);
47
48// --------------------------------------------------------------------------
49//
50// CT1 camera has 127 pixels. For geometry and Next Neighbor info see
51// CreateCam and CreateNN
52//
53MGeomCamCT1::MGeomCamCT1(const char *name)
54 : MGeomCam(127, 4.88, name, "Geometry information of CT1 camera")
55{
56 CreateCam();
57 CreateNN();
58 InitGeometry();
59}
60
61// --------------------------------------------------------------------------
62//
63// Create Next Neighbors: Fill the NN Info into the pixel objects.
64//
65void MGeomCamCT1::CreateNN()
66{
67 const Short_t nn[127][6] = { // Neighbors of #
68 { 1, 2, 3, 4, 5, 6}, // 0
69 { 0, 2, 6, 7, 8, 18},
70 { 0, 1, 3, 8, 9, 10},
71 { 0, 2, 4, 10, 11, 12},
72 { 0, 3, 5, 12, 13, 14},
73 { 0, 4, 6, 14, 15, 16},
74 { 0, 1, 5, 16, 17, 18},
75 { 1, 8, 18, 19, 20, 36},
76 { 1, 2, 7, 9, 20, 21},
77 { 2, 8, 10, 21, 22, 23},
78 { 2, 3, 9, 11, 23, 24}, // 10
79 { 3, 10, 12, 24, 25, 26},
80 { 3, 4, 11, 13, 26, 27},
81 { 4, 12, 14, 27, 28, 29},
82 { 4, 5, 13, 15, 29, 30},
83 { 5, 14, 16, 30, 31, 32},
84 { 5, 6, 15, 17, 32, 33},
85 { 6, 16, 18, 33, 34, 35},
86 { 1, 6, 7, 17, 35, 36},
87 { 7, 20, 36, 37, 38, 60},
88 { 7, 8, 19, 21, 38, 39}, // 20
89 { 8, 9, 20, 22, 39, 40},
90 { 9, 21, 23, 40, 41, 42},
91 { 9, 10, 22, 24, 42, 43},
92 { 10, 11, 23, 25, 43, 44},
93 { 11, 24, 26, 44, 45, 46},
94 { 11, 12, 25, 27, 46, 47},
95 { 12, 13, 26, 28, 47, 48},
96 { 13, 27, 29, 48, 49, 50},
97 { 13, 14, 28, 30, 50, 51},
98 { 14, 15, 29, 31, 51, 52}, // 30
99 { 15, 30, 32, 52, 53, 54},
100 { 15, 16, 31, 33, 54, 55},
101 { 16, 17, 32, 34, 55, 56},
102 { 17, 33, 35, 56, 57, 58},
103 { 17, 18, 34, 36, 58, 59},
104 { 7, 18, 19, 35, 59, 60},
105 { 19, 38, 60, 61, 62, 90},
106 { 19, 20, 37, 39, 62, 63},
107 { 20, 21, 38, 40, 63, 64},
108 { 21, 22, 39, 41, 64, 65}, // 40
109 { 22, 40, 42, 65, 66, 67},
110 { 22, 23, 41, 43, 67, 68},
111 { 23, 24, 42, 44, 68, 69},
112 { 24, 25, 43, 45, 69, 70},
113 { 25, 44, 46, 70, 71, 72},
114 { 25, 26, 45, 47, 72, 73},
115 { 26, 27, 46, 48, 73, 74},
116 { 27, 28, 47, 49, 74, 75},
117 { 28, 48, 50, 75, 76, 77},
118 { 28, 29, 49, 51, 77, 78}, // 50
119 { 29, 30, 50, 52, 78, 79},
120 { 30, 31, 51, 53, 79, 80},
121 { 31, 52, 54, 80, 81, 82},
122 { 31, 32, 53, 55, 82, 83},
123 { 32, 33, 54, 56, 83, 84},
124 { 33, 34, 55, 57, 84, 85},
125 { 34, 56, 58, 85, 86, 87},
126 { 34, 35, 57, 59, 87, 88},
127 { 35, 36, 58, 60, 88, 89},
128 { 19, 36, 37, 59, 89, 90}, // 60
129 { 37, 62, 90, 91, 92, 126},
130 { 37, 38, 61, 63, 92, 93},
131 { 38, 39, 62, 64, 93, 94},
132 { 39, 40, 63, 65, 94, 95},
133 { 40, 41, 64, 66, 95, 96},
134 { 41, 65, 67, 96, 97, 98},
135 { 41, 42, 66, 68, 98, 99},
136 { 42, 43, 67, 69, 99, 100},
137 { 43, 44, 68, 70, 100, 101},
138 { 44, 45, 69, 71, 101, 102}, // 70
139 { 45, 70, 72, 102, 103, 104},
140 { 45, 46, 71, 73, 104, 105},
141 { 46, 47, 72, 74, 105, 106},
142 { 47, 48, 73, 75, 106, 107},
143 { 48, 49, 74, 76, 107, 108},
144 { 49, 75, 77, 108, 109, 110},
145 { 49, 50, 76, 78, 110, 111},
146 { 50, 51, 77, 79, 111, 112},
147 { 51, 52, 78, 80, 112, 113},
148 { 52, 53, 79, 81, 113, 114}, // 80
149 { 53, 80, 82, 114, 115, 116},
150 { 53, 54, 81, 83, 116, 117},
151 { 54, 55, 82, 84, 117, 118},
152 { 55, 56, 83, 85, 118, 119},
153 { 56, 57, 84, 86, 119, 120},
154 { 57, 85, 87, 120, 121, 122},
155 { 57, 58, 86, 88, 122, 123},
156 { 58, 59, 87, 89, 123, 124},
157 { 59, 60, 88, 90, 124, 125},
158 { 37, 60, 61, 89, 125, 126}, // 90
159 { 61, 92, 126, -1, -1, -1},
160 { 61, 62, 91, 93, -1, -1},
161 { 62, 63, 92, 94, -1, -1},
162 { 63, 64, 93, 95, -1, -1},
163 { 64, 65, 94, 96, -1, -1},
164 { 65, 66, 95, 97, -1, -1},
165 { 66, 96, 98, -1, -1, -1},
166 { 66, 67, 97, 99, -1, -1},
167 { 67, 68, 98, 100, -1, -1},
168 { 68, 69, 99, 101, -1, -1}, // 100
169 { 69, 70, 100, 102, -1, -1},
170 { 70, 71, 101, 103, -1, -1},
171 { 71, 102, 104, -1, -1, -1},
172 { 71, 72, 103, 105, -1, -1},
173 { 72, 73, 104, 106, -1, -1},
174 { 73, 74, 105, 107, -1, -1},
175 { 74, 75, 106, 108, -1, -1},
176 { 75, 76, 107, 109, -1, -1},
177 { 76, 108, 110, -1, -1, -1},
178 { 76, 77, 109, 111, -1, -1}, // 110
179 { 77, 78, 110, 112, -1, -1},
180 { 78, 79, 111, 113, -1, -1},
181 { 79, 80, 112, 114, -1, -1},
182 { 80, 81, 113, 115, -1, -1},
183 { 81, 114, 116, -1, -1, -1},
184 { 81, 82, 115, 117, -1, -1},
185 { 82, 83, 116, 118, -1, -1},
186 { 83, 84, 117, 119, -1, -1},
187 { 84, 85, 118, 120, -1, -1},
188 { 85, 86, 119, 121, -1, -1}, // 120
189 { 86, 120, 122, -1, -1, -1},
190 { 86, 87, 121, 123, -1, -1},
191 { 87, 88, 122, 124, -1, -1},
192 { 88, 89, 123, 125, -1, -1},
193 { 89, 90, 124, 126, -1, -1},
194 { 61, 90, 91, 125, -1, -1} // 126
195 };
196
197 for (Int_t i=0; i<127; i++)
198 (*this)[i].SetNeighbors(nn[i][0], nn[i][1], nn[i][2],
199 nn[i][3], nn[i][4], nn[i][5]);
200}
201
202// --------------------------------------------------------------------------
203//
204// Calculate the geometry information of CT1 and fill this information
205// into the pixel objects.
206//
207void MGeomCamCT1::CreateCam()
208{
209 //
210 // fill the geometry class with the coordinates of the CT1 camera
211 //
212 //*fLog << inf << " Create CT1 geometry " << endl;
213
214 //
215 // this algorithm is from Martin Kestel originally
216 // it was punt into a root/C++ context by Harald Kornmayer and Thomas Bretz
217
218 const Float_t diameter = 21; // units are mm
219 const Float_t kS32 = sqrt(3)/2;
220
221 //
222 // add the first pixel to the list
223 //
224 Int_t pixnum = 0;
225
226 (*this)[pixnum++].Set(0, 0, diameter);
227
228 for (Int_t ring=1; ring<7; ring++)
229 {
230 //
231 // calc. coords for this ring counting from the
232 // starting number to the ending number
233 //
234 for (int i=0; i<ring; i++)
235 (*this)[pixnum++].Set((ring-i*0.5)*diameter,
236 i*kS32*diameter,
237 diameter);
238
239 for (int i=0; i<ring; i++)
240 (*this)[pixnum++].Set((ring*0.5-i)*diameter,
241 ring*kS32 * diameter,
242 diameter);
243
244 for (int i=0; i<ring; i++)
245 (*this)[pixnum++].Set(-(ring+i)*0.5*diameter,
246 (ring-i)*kS32*diameter,
247 diameter);
248
249 for (int i=0; i<ring; i++)
250 (*this)[pixnum++].Set((0.5*i-ring)*diameter,
251 -i*kS32*diameter,
252 diameter);
253
254 for (int i=0; i<ring; i++)
255 (*this)[pixnum++].Set((i-ring*0.5)*diameter,
256 -ring*kS32 * diameter,
257 diameter);
258
259 for (int i=0; i<ring; i++)
260 (*this)[pixnum++].Set((ring+i)*0.5*diameter,
261 (-ring+i)*kS32*diameter,
262 diameter);
263 }
264}
265
Note: See TracBrowser for help on using the repository browser.