Last change
on this file since 1868 was 447, checked in by harald, 24 years ago |
Bringing the sources for the octobertest under CVS controll.
(november, 3rd, 2000)
|
File size:
661 bytes
|
Line | |
---|
1 | ////////////////////////////////////////////////////////////////////////
|
---|
2 | //
|
---|
3 | // class MGeomCam
|
---|
4 | //
|
---|
5 | #ifndef __MGeomCam__
|
---|
6 | #define __MGeomCam__
|
---|
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 fNumPixel ; // number of Pixel in the Camera
|
---|
20 |
|
---|
21 | Float_t *fXcoord ; // X coordinate of the pixels
|
---|
22 | Float_t *fYcoord ; // Y coordinate of the pixels
|
---|
23 | Float_t *fRadius ; // radius of the pixels
|
---|
24 |
|
---|
25 | Int_t *fNumNeigbor ;
|
---|
26 | Int_t (*fNextNeigbor)[6] ;
|
---|
27 |
|
---|
28 |
|
---|
29 |
|
---|
30 |
|
---|
31 | protected:
|
---|
32 |
|
---|
33 | public:
|
---|
34 |
|
---|
35 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.