- Timestamp:
- 08/04/08 11:44:11 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9076 r9077 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/08/04 Thomas Bretz 22 23 * added a filter against very bright events cleaning the 24 bad pixel plot 25 26 20 27 21 28 2008/08/04 Daniela Dorner -
trunk/MagicSoft/Mars/NEWS
r9071 r9077 79 79 Instead of the sequence number also sequence files are accepted. 80 80 81 ;callisto 82 83 * added a filter again which was was removed in the last release. 84 it removed the most brightest events. This should not change 85 any analysis result because these events are so bright that 86 they cannot be analysed anyway, but the bad-pixel plots doesn't 87 show outliers. 88 81 89 ;star 82 90 83 91 * The camera currents are now displayed with the rate of the camera 84 92 reports instead of the caco reports 93 94 ;ganymed 95 96 * if mc camera files are new enough (>=8) the source position in the 97 camera is now calculated from the stored telscope and shower 98 orientation (Note, that this might not be suitable in all cases 99 depending on the aim of the study. These case still needs 100 implementation) 85 101 86 102 -
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r9038 r9077 540 540 // an error is raised if more than 50% of the events were skipped. 541 541 // 542 // Since unsuitable pixels are not counted in the ideal case 543 // there is no empty pixel at all. 544 // 542 545 MFCosmics fcosmicscal; 543 546 fcosmicscal.SetNamePedestalCam("MPedestalFundamental"); //CORRECT? … … 548 551 549 552 //------------------------------ 550 /* 551 MFCosmics fcosmicsped; // Def=20% empty pixels 552 fcosmicsped.SetNamePedestalCam("MPedestalFundamental"); //CORRECT? 553 MContinue contcosped(&fcosmicsped, "ContCosmicsPed"); 554 contcosped.SetInverted(); 555 */ 553 // 554 // Remove events which are too bright. These events could either 555 // be calibration events or events which produce many many 556 // saturating low-gains and thus spoil the dead pixel plot. 557 // These events don't seem to be physical events so we can fairly 558 // remove them (they are no analysable gammas anyway) 559 // So we remove all events which have less than 5% empty pixels. 560 // 561 MFCosmics fcosmicsbright; 562 fcosmicsbright.SetNamePedestalCam("MPedestalFundamental"); 563 fcosmicsbright.SetMaxEmptyPixels(0.10); 564 fcosmicsbright.SetMinAcceptedFraction(0.9); 565 566 MContinue contbright(&fcosmicsbright, "ContBrightEvts"); 567 contbright.SetInverted(); 556 568 557 569 //------------------------------ … … 845 857 tlist2.AddToList(&taskenv2); 846 858 859 // Check if we have an extremely bright event (remove them, 860 // they are presumably errornous events or calibration events) 861 tlist2.AddToList(&contbright); 862 847 863 /* 848 864 if (fIsHiLoCalibration)
Note:
See TracChangeset
for help on using the changeset viewer.