Last change
on this file since 3190 was 447, checked in by harald, 24 years ago |
Bringing the sources for the octobertest under CVS controll.
(november, 3rd, 2000)
|
File size:
955 bytes
|
Line | |
---|
1 | ////////////////////////////////////////////////////////////////////////
|
---|
2 | //
|
---|
3 | // class MGeomPixel
|
---|
4 | //
|
---|
5 | #ifndef __MGeomPixel__
|
---|
6 | #define __MGeomPixel__
|
---|
7 |
|
---|
8 | #include "TObject.h"
|
---|
9 |
|
---|
10 | class MGeomCam : public TObject {
|
---|
11 | //
|
---|
12 | // Geometry of the MAGIC camera.
|
---|
13 | //
|
---|
14 | // all geometric information about the camera is inside this class
|
---|
15 | //
|
---|
16 |
|
---|
17 | private:
|
---|
18 |
|
---|
19 | Int_t fPixId ; // number of this Pixel
|
---|
20 |
|
---|
21 | Float_t fXcoord ; // X coordinate of the pixels (central position)
|
---|
22 | Float_t fYcoord ; // Y coordinate of the pixels (central position)
|
---|
23 | Float_t fRadius ; // radius of the pixels
|
---|
24 |
|
---|
25 | Int_t fNumNeigbor ;
|
---|
26 | Int_t fNextNeigbor[6] ;
|
---|
27 |
|
---|
28 | Float_t fXCorners[6] ;
|
---|
29 | Float_t fYCorners[6] ;
|
---|
30 |
|
---|
31 | Bool_t IsInstalled ;
|
---|
32 | Bool_t IsOk ;
|
---|
33 |
|
---|
34 | protected:
|
---|
35 |
|
---|
36 | public:
|
---|
37 |
|
---|
38 | MGeomPixel() ;
|
---|
39 |
|
---|
40 | MGeomPixel(Int_t iP) ;
|
---|
41 |
|
---|
42 | MGeomPixel(Int_t iP, fX, fY, fR ) ;
|
---|
43 |
|
---|
44 | ClassDef(MGeomPixel, 1) // class for a Pixel geometry
|
---|
45 |
|
---|
46 |
|
---|
47 | #endif
|
---|
48 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.