source: trunk/MagicSoft/Mars/mtemp/MStarLocalCam.h@ 3831

Last change on this file since 3831 was 3808, checked in by jlopez, 20 years ago
*** empty log message ***
File size: 711 bytes
Line 
1#ifndef MARS_MStarLocalCam
2#define MARS_MStarLocalCam
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7#ifndef MARS_MCamEvent
8#include "MCamEvent.h"
9#endif
10
11class TList;
12
13class MGeomCam;
14class MStarLocalPos;
15
16class MStarLocalCam : public MParContainer
17{
18private:
19
20 TList *fStars; //-> FIXME: Change TClonesArray away from a pointer?
21
22public:
23
24 MStarLocalCam(const char *name=NULL, const char *title=NULL);
25 ~MStarLocalCam();
26
27 MStarLocalPos &operator[] (Int_t i);
28 const MStarLocalPos &operator[] (Int_t i) const;
29
30 TList *GetList() const { return fStars; }
31
32 void Print(Option_t *o="") const;
33
34 ClassDef(MStarLocalCam, 1) // Storage Container for star positions in the camera
35};
36
37#endif
Note: See TracBrowser for help on using the repository browser.