Changeset 8287 for trunk/MagicSoft
- Timestamp:
- 02/01/07 15:57:02 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8282 r8287 37 37 - small improvements to splitting number rows 38 38 - handle possible tabs correctly 39 40 * mbase/MStatusArray.[h,cc]: 41 - improved handling in Read(). We make sure now that Read doesn't 42 produce a memory leak 43 44 * mhist/MHCamera.[h,cc]: 45 - overwrote Clone function to make sure that a cloned MHCamera 46 is never added to the current directory 47 48 * mcamera/MCameraTH.h: 49 - added a workaround to get rid of the obsolete discriminator thresholds 50 for the non-trigger pixels 51 52 * mreport/MReportCC.cc: 53 - added a sanity \o-Terminator to the dicriminator threshold extraction 54 39 55 40 56 -
trunk/MagicSoft/Mars/NEWS
r8280 r8287 15 15 - general: fixed the error display of the camera display. It showed 16 16 wrong results. 17 18 - general: fixed a memory leak when reading many MStatusDisplays 17 19 18 20 - callisto: Redone the signal extraction this includes: -
trunk/MagicSoft/Mars/mcamera/MCameraTH.h
r7719 r8287 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MCameraTH.h,v 1.7 2007-02-01 15:56:17 tbretz Exp $ 3 \* ======================================================================== */ 1 4 #ifndef MARS_MCameraTH 2 5 #define MARS_MCameraTH … … 40 43 return kFALSE; 41 44 45 // FIXME: This is a stupid workaround to describe the trigger area 46 // and only valid for the MAGIC-I camera! 47 if (idx>=397 || 48 (idx>=339 && idx<=345) || 49 (idx>=279 && idx<=283) || 50 (idx>=331 && idx<=334) || 51 (idx>=394 && idx<=396) || 52 (idx>=271 && idx<=273) || 53 (idx>=329 && idx<=330) || 54 (idx>=383 && idx<=389) || 55 (idx>=319 && idx<=323) || 56 (idx>=289 && idx<=293) || 57 (idx>=350 && idx<=356) || 58 (idx>=299 && idx<=303) || 59 (idx>=361 && idx<=367) || 60 (idx>=309 && idx<=313) || 61 (idx>=372 && idx<=378)) 62 return kFALSE; 63 42 64 val = fTH[idx]; 43 65 return val>0; -
trunk/MagicSoft/Mars/mreport/MReportCC.cc
r7726 r8287 167 167 while (pos<end) 168 168 { 169 const Char_t hex[ 2] = { pos[0], pos[1]};169 const Char_t hex[3] = { pos[0], pos[1], 0 }; 170 170 pos += 2; 171 171
Note:
See TracChangeset
for help on using the changeset viewer.