Changeset 1939
- Timestamp:
- 04/10/03 19:31:59 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1936 r1939 6 6 - changed, so that also a filter given as a pointer is added to 7 7 the tasklist automatically 8 - added SetInverted 9 - added IsInverted 8 10 9 11 * mbase/MTaskList.[h,cc]: … … 15 17 * mbase/MFilter.[h,cc]: 16 18 - removed unnecessary base functions for Pre//PostProcess 19 - added SetInverted 20 - added IsInverted 17 21 18 22 * mbase/MTask.cc, mfileio/MCT1ReadPreProc.cc, mfileio/MReadTree.cc, … … 22 26 * mhist/MHHadronness.cc: 23 27 - removed unnecessary check 28 29 * meventdisp/MGFadcDisp.cc: 30 - remove all IDs in listbox 31 - add entries sorted 24 32 25 33 -
trunk/MagicSoft/Mars/meventdisp/MGFadcDisp.cc
r1910 r1939 25 25 #include "MGFadcDisp.h" 26 26 27 #include <limits.h> // INT_MAX 27 28 #include <stdlib.h> // atoi 28 29 #include <iostream.h> // cout for debugging … … 174 175 TString txt; 175 176 txt += pixel.GetPixelId(); 176 fPixelList->AddEntry (txt, pixel.GetPixelId());177 fPixelList->AddEntrySort(txt, pixel.GetPixelId()); 177 178 } 178 179 … … 216 217 const Int_t lastsel = fPixelList->GetSelected(); 217 218 218 fPixelList->RemoveEntries(0, GetEvent()->GetNumPixels());219 fPixelList->RemoveEntries(0, INT_MAX); 219 220 220 221 DisplayPixel(lastsel);
Note:
See TracChangeset
for help on using the changeset viewer.