Changeset 8170
- Timestamp:
- 10/27/06 14:39:36 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8169 r8170 26 26 * datacenter/macros/plotdb.C: 27 27 - implemented a possibility to show average values with RMS 28 29 * mjtrain/MJTrainSeparation.cc: 30 - do not print observation time statistics if observation time is 31 zero 28 32 29 33 -
trunk/MagicSoft/Mars/NEWS
r8161 r8170 2 2 3 3 *** <cvs> 4 5 - database: Website to plot values from the database has been added. 4 6 5 7 - general: The changes to the interpretation of phrases lead to 6 8 a problem with the access of MHMatrix objects (eg. "M[0]")... fixed. 7 9 8 - database: Website to plot values from the database has been added. 10 - callisto: Redone the signal extraction this includes: 11 + Unified the algorithms to extract the pedestal for all pedestal 12 extractions done 13 + Unification of hi- and lo-gain into one array 14 + Unification of hi- and lo-gain extraction for Spline and 15 Digital Filter (means now exactly the same algorithm is used, 16 not a copy-and-pasted one) 17 + Store pedestal subtracted data in a common place 18 + Improved extraction algorithms. If the algorithms search a 19 maximum but don't find one they don't return the maximum anymore 20 + Improved the extraction such that a information for signal 21 and time which is consistent is returned 22 + replaced the numerical spline with a (not slower) analytical 23 solution 24 + Lowered the saturation limit from 250 to 245 to make sure that 25 we are far away in all pixels from problems with the clock-noise 26 + Changed the lo-gain start shift from 2.5 to 6.0 which gives 27 clearly smoother results (to be investigated further) 9 28 10 29 -
trunk/MagicSoft/Mars/datacenter/macros/fillstar.C
r7840 r8170 156 156 Float_t psf = 58.5480*mw - 37.3829; 157 157 psf = TMath::Nint(psf*10)/10.; 158 if (psf<0) 159 psf=0; 158 160 TString PSF = Form("%5.1f", psf); 159 161 Int_t num = (int)hmuon->GetEntries(); -
trunk/MagicSoft/Mars/mjtrain/MJTrainSeparation.cc
r8164 r8170 288 288 } 289 289 290 *fLog << all << "Observation Time: " << TMath::Nint(ontime/60) << "min" << endl; 291 *fLog << "Maximum Significance: " << Form("%.1f", sig1) << " ["; 292 *fLog << Form("%.1f", sig1/TMath::Sqrt(ontime/3600)) << "/sqrt(h)]"; 290 if (ontime>0) 291 *fLog << all << "Observation Time: " << TMath::Nint(ontime/60) << "min" << endl; 292 *fLog << "Maximum Significance: " << Form("%.1f", sig1); 293 if (ontime>0) 294 *fLog << Form(" [%.1f/sqrt(h)]", sig1/TMath::Sqrt(ontime/3600)); 293 295 *fLog << endl; 294 296
Note:
See TracChangeset
for help on using the changeset viewer.