- Timestamp:
- 05/13/05 19:50:48 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/NEWS
r7033 r7034 96 96 + The integration ranges were shifted by 0.2 FADC slices to the right. 97 97 + unreliable handling of floating point values caused different 98 results on different platform or with different compiler options 98 results on different platform or with different compiler options: 99 The new algorithm is numerically exact and more accurate because 100 it doesn't calculate the integration position by multiple times 101 adding the step-size (which results in numerical uncertanties 102 exspecially if multiplied with large numbers) 99 103 100 104 - callisto: set new defaults in MExtractTimeAndChargeDigitalFilter: -
trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.cc
r7029 r7034 1075 1075 1076 1076 sum = 0.; 1077 for (Int_t i=0; i< =n; i++)1077 for (Int_t i=0; i<n; i++) 1078 1078 { 1079 1079 const Float_t x = start+i*step; … … 1117 1117 1118 1118 sum = 0.; 1119 for (Int_t i=0; i< =n; i++)1119 for (Int_t i=0; i<n; i++) 1120 1120 { 1121 1121 const Float_t x = start+i*step; -
trunk/MagicSoft/Mars/star.rc
r7022 r7034 47 47 # Use this if you want to change the parameters of the software trigger 48 48 # ------------------------------------------------------------------------- 49 50 49 #FilterSwTrigger.Threshold: 5 51 50 #FilterSwTrigger.NumNeighbors: 4 … … 55 54 # Setup or switch off the muon analysis here 56 55 # ------------------------------------------------------------------------- 57 58 56 #MJStar.MuonAnalysis: On 59 57 … … 74 72 75 73 # ------------------------------------------------------------------------- 74 # Setup the image cleaning here 76 75 # ------------------------------------------------------------------------- 77 76 MImgCleanStd.CleanLevel1: 8.5 … … 80 79 81 80 # ------------------------------------------------------------------------- 81 # setup the image parameter calculation here 82 82 # ------------------------------------------------------------------------- 83 83 #MHillasCalc.IdxIsland: 0
Note:
See TracChangeset
for help on using the changeset viewer.