Index: trunk/MagicSoft/Mars/mastro/MAstroCamera.cc
===================================================================
--- trunk/MagicSoft/Mars/mastro/MAstroCamera.cc	(revision 3814)
+++ 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 3814)
+++ 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
