source: trunk/MagicSoft/Mars/mgeom/MGeomPix.cc@ 5478

Last change on this file since 5478 was 4826, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 4.7 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// 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// Version 1:
39// ----------
40// - first implementation
41//
42// Version 2:
43// ----------
44// - added fA
45//
46// Version 3:
47// ----------
48// - added fAidx
49//
50//
51// FIXME: According to an agreement we have to change the name 'Id' to 'idx'
52//
53////////////////////////////////////////////////////////////////////////////
54#include "MGeomPix.h"
55
56#include <math.h>
57
58#include "MLog.h"
59#include "MLogManip.h"
60
61#include "MGeomCam.h"
62
63ClassImp(MGeomPix);
64
65using namespace std;
66
67const Float_t MGeomPix::gsTan30 = tan(30/kRad2Deg);
68const Float_t MGeomPix::gsTan60 = tan(60/kRad2Deg);
69
70// --------------------------------------------------------------------------
71//
72// Initializes one pixel
73//
74MGeomPix::MGeomPix(Float_t x, Float_t y, Float_t r, UInt_t s, UInt_t a)
75{
76 // default constructor
77 Set(x, y, r, s, a);
78}
79
80// --------------------------------------------------------------------------
81//
82// Initializes Next Neighbors.
83//
84// WARNING: This function is public, but it is not meant for user access.
85// It should only be used from geometry classes (like MGeomCam)
86//
87void MGeomPix::SetNeighbors(Short_t i0, Short_t i1, Short_t i2,
88 Short_t i3, Short_t i4, Short_t i5)
89{
90 fNeighbors[0] = i0;
91 fNeighbors[1] = i1;
92 fNeighbors[2] = i2;
93 fNeighbors[3] = i3;
94 fNeighbors[4] = i4;
95 fNeighbors[5] = i5;
96
97 int i;
98 for (i=0; i<6; i++)
99 if (fNeighbors[i]<0)
100 break;
101
102 fNumNeighbors = i;
103
104 if (fNumNeighbors<5)
105 SetBit(kIsInOutermostRing);
106}
107
108// --------------------------------------------------------------------------
109//
110// Set the kIsOuterRing flag if this pixel has a outermost pixel
111// as Next Neighbor and don't have the kIsOutermostRing flag itself.
112//
113void MGeomPix::CheckOuterRing(const MGeomCam &cam)
114{
115 if (IsInOutermostRing())
116 return;
117
118 for (int i=0; i<fNumNeighbors; i++)
119 if (cam[fNeighbors[i]].IsInOutermostRing())
120 {
121 SetBit(kIsInOuterRing);
122 return;
123 }
124}
125
126// --------------------------------------------------------------------------
127//
128// Print the geometry information of one pixel.
129//
130void MGeomPix::Print(Option_t *opt) const
131{
132 // information about a pixel
133 *fLog << all << "MPixGeom: x= " << fX << "mm y= " << fY << "mm ";
134 *fLog << "d= " << fD << "mm A= " << fA << "mm²" << endl;
135}
136
137// ------------------------------------------------------------------------
138//
139// compute the distance of a point (px,py) to the Hexagon center in
140// MGeomPix coordinates. Return kTRUE if inside.
141//
142Bool_t MGeomPix::IsInside(Float_t px, Float_t py) const
143{
144 //
145 // compute the distance of the Point to the center of the Hexagon
146 //
147 const Double_t dx = px-fX;
148
149 //
150 // Now check if point is outside of hexagon; just check x coordinate
151 // in three coordinate systems: the default one, in which two sides of
152 // the hexagon are paralel to the y axis (see camera displays) and two
153 // more, rotated with respect to that one by +- 60 degrees.
154 //
155 if (TMath::Abs(dx)*2>fD)
156 return kFALSE;
157
158 const Double_t dy = py-fY;
159
160 const static Double_t cos60 = TMath::Cos(60/kRad2Deg);
161 const static Double_t sin60 = TMath::Sin(60/kRad2Deg);
162
163 const Double_t dx2 = dx*cos60 + dy*sin60;
164 if (TMath::Abs(dx2)*2>fD)
165 return kFALSE;
166
167 const Double_t dx3 = dx*cos60 - dy*sin60;
168 if (TMath::Abs(dx3)*2>fD)
169 return kFALSE;
170
171 return kTRUE;
172}
Note: See TracBrowser for help on using the repository browser.