| 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 |
|
|---|
| 11 | class TList;
|
|---|
| 12 |
|
|---|
| 13 | class MGeomCam;
|
|---|
| 14 | class MStarLocalPos;
|
|---|
| 15 |
|
|---|
| 16 | class MStarLocalCam : public MParContainer
|
|---|
| 17 | {
|
|---|
| 18 | private:
|
|---|
| 19 |
|
|---|
| 20 | TList *fStars; //-> FIXME: Change TClonesArray away from a pointer?
|
|---|
| 21 |
|
|---|
| 22 | public:
|
|---|
| 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.