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-2002
|
---|
22 | !
|
---|
23 | !
|
---|
24 | \* ======================================================================== */
|
---|
25 |
|
---|
26 | //////////////////////////////////////////////////////////////////////////////
|
---|
27 | //
|
---|
28 | // MGeomPix
|
---|
29 | //
|
---|
30 | // This container stores the geometry (position) information of
|
---|
31 | // a single pixel together with the information about next neighbors.
|
---|
32 | //
|
---|
33 | // The BIT(22) and BIT(23) is used to flag the pixels in the outer
|
---|
34 | // and outermost ring. Please don't use this bits in conjuction with
|
---|
35 | // MGeomPix.
|
---|
36 | //
|
---|
37 | ////////////////////////////////////////////////////////////////////////////
|
---|
38 |
|
---|
39 | #include "MGeomPix.h"
|
---|
40 |
|
---|
41 | #include <math.h>
|
---|
42 |
|
---|
43 | #include "MLog.h"
|
---|
44 | #include "MLogManip.h"
|
---|
45 |
|
---|
46 | #include "MGeomCam.h"
|
---|
47 |
|
---|
48 | ClassImp(MGeomPix);
|
---|
49 |
|
---|
50 | using namespace std;
|
---|
51 |
|
---|
52 | // --------------------------------------------------------------------------
|
---|
53 | //
|
---|
54 | // Initializes one pixel
|
---|
55 | //
|
---|
56 | MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r) : fX(x), fY(y), fD(r)
|
---|
57 | {
|
---|
58 | // default constructor
|
---|
59 | }
|
---|
60 |
|
---|
61 | // --------------------------------------------------------------------------
|
---|
62 | //
|
---|
63 | // Return the area of the pixel. A hexagonal shape is assumed.
|
---|
64 | //
|
---|
65 | Float_t MGeomPix::GetA() const
|
---|
66 | {
|
---|
67 | return fD*fD*tan(60/kRad2Deg);
|
---|
68 | }
|
---|
69 |
|
---|
70 | // --------------------------------------------------------------------------
|
---|
71 | //
|
---|
72 | // Initializes Next Neighbors.
|
---|
73 | //
|
---|
74 | // WARNING: This function is public, but it is not meant for user access.
|
---|
75 | // It should only be used from geometry classes (like MGeomCam)
|
---|
76 | //
|
---|
77 | void MGeomPix::SetNeighbors(Short_t i0, Short_t i1, Short_t i2,
|
---|
78 | Short_t i3, Short_t i4, Short_t i5)
|
---|
79 | {
|
---|
80 | fNeighbors[0] = i0;
|
---|
81 | fNeighbors[1] = i1;
|
---|
82 | fNeighbors[2] = i2;
|
---|
83 | fNeighbors[3] = i3;
|
---|
84 | fNeighbors[4] = i4;
|
---|
85 | fNeighbors[5] = i5;
|
---|
86 |
|
---|
87 | int i;
|
---|
88 | for (i=0; i<6; i++)
|
---|
89 | if (fNeighbors[i]<0)
|
---|
90 | break;
|
---|
91 |
|
---|
92 | fNumNeighbors = i;
|
---|
93 |
|
---|
94 | if (fNumNeighbors<5)
|
---|
95 | SetBit(kIsInOutermostRing);
|
---|
96 | }
|
---|
97 |
|
---|
98 | // --------------------------------------------------------------------------
|
---|
99 | //
|
---|
100 | // Set the kIsOuterRing flag if this pixel has a outermost pixel
|
---|
101 | // as Next Neighbor and don't have the kIsOutermostRing flag itself.
|
---|
102 | //
|
---|
103 | void MGeomPix::CheckOuterRing(const MGeomCam &cam)
|
---|
104 | {
|
---|
105 | if (IsInOutermostRing())
|
---|
106 | return;
|
---|
107 |
|
---|
108 | for (int i=0; i<fNumNeighbors; i++)
|
---|
109 | if (cam[fNeighbors[i]].IsInOutermostRing())
|
---|
110 | {
|
---|
111 | SetBit(kIsInOuterRing);
|
---|
112 | return;
|
---|
113 | }
|
---|
114 | }
|
---|
115 |
|
---|
116 | // --------------------------------------------------------------------------
|
---|
117 | //
|
---|
118 | // Print the geometry information of one pixel.
|
---|
119 | //
|
---|
120 | void MGeomPix::Print(Option_t *opt) const
|
---|
121 | {
|
---|
122 | // information about a pixel
|
---|
123 | *fLog << all << "MPixGeom: x= " << fX
|
---|
124 | << " y= " << fY
|
---|
125 | << " d= " << fD
|
---|
126 | << endl ;
|
---|
127 | }
|
---|
128 |
|
---|