Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 3917)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 3918)
@@ -19,4 +19,12 @@
                                                  -*-*- END OF LINE -*-*-
 
+ 2004/04/30: Thomas Bretz
+
+   * mastro/MAstroCamera.[h,cc]:
+     - removed obsolete TList data member (use a argument in
+       GetStarList instead)
+
+
+
  2004/04/30: Daniela Dorner
   
@@ -62,4 +70,5 @@
    * mjobs/MJCalibration.[h,cc]
      - Set time extractor by pointer 
+
 
 
Index: /trunk/MagicSoft/Mars/mastro/MAstroCamera.cc
===================================================================
--- /trunk/MagicSoft/Mars/mastro/MAstroCamera.cc	(revision 3917)
+++ /trunk/MagicSoft/Mars/mastro/MAstroCamera.cc	(revision 3918)
@@ -351,10 +351,10 @@
 // Otherwise a new object is created.
 //
-/*void MAstroCamera::FillStarList()
-{
-    fStars->SetOwner();
-    fStars->Delete();
-
-    if (!fTime || !fObservatory || !fMirrors || !fStars)
+/*void MAstroCamera::FillStarList(TList *list)
+{
+    list->SetOwner();
+    list->Delete();
+
+    if (!fTime || !fObservatory || !fMirrors || !list)
     {
         cout << "Missing data..." << endl;
@@ -395,5 +395,5 @@
 	MStarLocalPos *starpos = new MStarLocalPos;
 	starpos->SetExpValues(mag,mean(0),mean(1));
-	fStars->Add(starpos);
+	list->Add(starpos);
     }
 }
Index: /trunk/MagicSoft/Mars/mastro/MAstroCamera.h
===================================================================
--- /trunk/MagicSoft/Mars/mastro/MAstroCamera.h	(revision 3917)
+++ /trunk/MagicSoft/Mars/mastro/MAstroCamera.h	(revision 3918)
@@ -19,5 +19,4 @@
     MGeomCam     *fGeom;
     TClonesArray *fMirrors;
-    TList        *fStars;
 
     MGeomMirror  *fMirror0;     //!
@@ -34,9 +33,4 @@
     void SetMirrors(TClonesArray &arr);
     void SetGeom(const MGeomCam &cam);
-    void SetStarList(TList* s) { fStars = s; }
-
-//    void FillStarList();
-
-    TList *GetList() const { return fStars; }
 
     ClassDef(MAstroCamera, 1) // Display class to display stars on the camera
