Changeset 3918 for trunk/MagicSoft/Mars
- Timestamp:
- 04/30/04 19:06:56 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3917 r3918 19 19 -*-*- END OF LINE -*-*- 20 20 21 2004/04/30: Thomas Bretz 22 23 * mastro/MAstroCamera.[h,cc]: 24 - removed obsolete TList data member (use a argument in 25 GetStarList instead) 26 27 28 21 29 2004/04/30: Daniela Dorner 22 30 … … 62 70 * mjobs/MJCalibration.[h,cc] 63 71 - Set time extractor by pointer 72 64 73 65 74 -
trunk/MagicSoft/Mars/mastro/MAstroCamera.cc
r3813 r3918 351 351 // Otherwise a new object is created. 352 352 // 353 /*void MAstroCamera::FillStarList( )354 { 355 fStars->SetOwner();356 fStars->Delete();357 358 if (!fTime || !fObservatory || !fMirrors || ! fStars)353 /*void MAstroCamera::FillStarList(TList *list) 354 { 355 list->SetOwner(); 356 list->Delete(); 357 358 if (!fTime || !fObservatory || !fMirrors || !list) 359 359 { 360 360 cout << "Missing data..." << endl; … … 395 395 MStarLocalPos *starpos = new MStarLocalPos; 396 396 starpos->SetExpValues(mag,mean(0),mean(1)); 397 fStars->Add(starpos);397 list->Add(starpos); 398 398 } 399 399 } -
trunk/MagicSoft/Mars/mastro/MAstroCamera.h
r3814 r3918 19 19 MGeomCam *fGeom; 20 20 TClonesArray *fMirrors; 21 TList *fStars;22 21 23 22 MGeomMirror *fMirror0; //! … … 34 33 void SetMirrors(TClonesArray &arr); 35 34 void SetGeom(const MGeomCam &cam); 36 void SetStarList(TList* s) { fStars = s; }37 38 // void FillStarList();39 40 TList *GetList() const { return fStars; }41 35 42 36 ClassDef(MAstroCamera, 1) // Display class to display stars on the camera
Note:
See TracChangeset
for help on using the changeset viewer.