source: trunk/MagicSoft/Mars/mastro/MAstroCamera.h@ 3666

Last change on this file since 3666 was 3666, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 721 bytes
Line 
1#ifndef MARS_MAstroCamera
2#define MARS_MAstroCamera
3
4#ifndef MARS_MAstroCatalog
5#include "MAstroCatalog.h"
6#endif
7
8class TClonesArray;
9
10class MTime;
11class MGeomCam;
12class MGeomMirror;
13class MObservatory;
14
15class MAstroCamera : public MAstroCatalog
16{
17private:
18 MGeomCam *fGeom;
19 TClonesArray *fMirrors;
20
21 MGeomMirror *fMirror0; //!
22
23 Int_t ConvertToPad(const TVector3 &w, TVector2 &v) const;
24 void AddPrimitives(TString o);
25 void SetRangePad(Option_t *o) { }
26 void ExecuteEvent(Int_t event, Int_t mp1, Int_t mp2);
27
28public:
29 MAstroCamera();
30 ~MAstroCamera();
31
32 void SetMirrors(TClonesArray &arr);
33 void SetGeom(const MGeomCam &cam);
34
35 ClassDef(MAstroCamera, 1)
36};
37
38#endif
Note: See TracBrowser for help on using the repository browser.