Changeset 5157 for trunk/MagicSoft/Mars
- Timestamp:
- 10/01/04 17:33:09 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5153 r5157 20 20 -*-*- END OF LINE -*-*- 21 21 22 2004/10/01: Thomas Bretz 23 24 * mcalib/MCalibrationChargeCalc.cc, 25 mcalib/MCalibrationRelTimeCalc.cc, 26 mhcalib/MHCalibrationChargeCam.cc. 27 mhcalib/MHCalibrationRelTimeCam.cc: 28 - changed some output to fit into a standard 80-col 29 console 30 31 * mhist/MHCamEvent.[h,cc]: 32 - added the option to count 'above threshold' 33 (former MHTrigger) 34 35 * mhist/MHCamEventRot.[h,cc]: 36 - added the option to count 'above threshold' 37 38 * mhist/MHCamera.[h,cc]: 39 - fixed filling of thresholded events (CntCamContent) 40 such that it takes the 'used'flag into account 41 42 * mjobs/MJStar.cc: 43 - added plots showing how often a pixel survived image 44 cleaning and the corresponding derotated 2D plot 45 46 * mjobs/MJCalibrateSignal.cc: 47 - display in all plots in which we expect a stable value 48 the variance instead of the rms 49 50 * mjobs/MJob.cc: 51 - fixed a typo in an output 52 53 54 22 55 2004/09/30: Hendrik Bartko, Markus Gaug 23 56 24 57 * msignal/MExtractFixedWindowSpline.cc 25 58 - corrected a small bug for the case that the high-gain extraction … … 29 62 - use MPedCalcFromLoGain if IsUseData() is set 30 63 64 65 31 66 2004/09/29: Hendrik Bartko, Diego Tescaro, Markus Gaug 32 67 33 68 * msignal/MExtractTimeAndChargeDigitalFilter.[h,cc] 34 69 - Hendriks digital filter finally implemented 70 35 71 * msignal/cosmics_weights.root msignal/calibration_weights_UV.root 36 72 - needed weights for the digital filter … … 38 74 * msignal/Makefile 39 75 * msignal/SignalLinkDef.h 40 - added MExtractTimeAndChargeDigitalFilter and MExtractTimeAndCharge 76 - added MExtractTimeAndChargeDigitalFilter and 77 MExtractTimeAndCharge 41 78 42 79 * msignal/MExtractTime.h … … 46 83 - added variable abflag in function FindTimeAndChargeHiGain and 47 84 FindTimeAndChargeLoGain 85 48 86 49 87 -
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r5143 r5157 293 293 MPedCalcFromLoGain pedlo; 294 294 MMcPedestalCopy pcopy; 295 //MExtractSlidingWindow extsignal;296 295 MTaskEnv taskenv1("ExtractSignal"); 296 MTaskEnv taskenv2("ExtractTime"); 297 297 taskenv1.SetDefault(extractor1); 298 //MExtractTimeFastSpline exttime;299 MTaskEnv taskenv2("ExtractTime");300 298 taskenv2.SetDefault(extractor2); 301 299 MCalibrateData calib; … … 313 311 MHCamEvent evt5(2, "Unsuitable", "Unsuitable event ratio;;%"); 314 312 MHCamEvent evt6(0, "Times", "Arrival Time;;T [slice]"); 313 evt0.EnableVariance(); 314 evt2.EnableVariance(); 315 evt3.EnableVariance(); 316 evt6.EnableVariance(); 315 317 316 318 MFillH fill0(&evt0, "MPedestalCam", "FillPedestalFLG"); -
trunk/MagicSoft/Mars/mjobs/MJStar.cc
r5143 r5157 46 46 #include "MHVsTime.h" 47 47 #include "MHCamEvent.h" 48 #include "MHCamEventRot.h" 48 49 #include "MBinning.h" 49 50 … … 59 60 #include "MWriteRootFile.h" 60 61 62 #include "MObservatory.h" 61 63 #include "MPointingPosCalc.h" 62 //#include "MSrcPosFromModel.h"63 64 64 65 ClassImp(MJStar); … … 143 144 MParList plist; 144 145 plist.AddToList(this); // take care of fDisplay! 146 147 MObservatory obs; 148 plist.AddToList(&obs); 145 149 146 150 // Setup Tasklist … … 184 188 185 189 // ------------------ Setup histograms and fill tasks ---------------- 186 MHCamEvent evt0("Cleaned", "Signal after Cleaning;;S [\\gamma]"); 187 evt0.SetType(0); 190 MHCamEvent evt0a(0, "Cleaned", "Signal after Cleaning;;S [\\gamma]"); 191 MHCamEvent evt0b(0, "UsedPix", "Pixels marked Used;;Marked Used [%]"); 192 evt0b.SetThreshold(0); 193 194 //MHCamEventRot evt0r("UsedRot", "Pixels marked Used (derotated)"); 195 //evt0r.SetThreshold(0); 188 196 189 197 MH3 h1("MEventRate.fRate"); … … 209 217 MFillH fillvs(&hvs, "MTime", "FillEventRate10s"); 210 218 211 MFillH fill0(&evt0, "MCerPhotEvt", "FillCerPhotEvt"); 219 MFillH fill0a(&evt0a, "MCerPhotEvt", "FillCerPhotEvt"); 220 MFillH fill0b(&evt0b, "MCerPhotEvt", "FillCntUsedPixels"); 221 //MFillH fill0r(&evt0r, "MCerPhotEvt", "FillCntUsedRotated"); 212 222 MFillH fill1("MHHillas", "MHillas", "FillHillas"); 213 223 MFillH fill2("MHHillasExt", "", "FillHillasExt"); … … 222 232 //MFillH fill9("MHCerPhot"); 223 233 234 //fill0r.SetDrawOption("colz"); 224 235 fill8.SetNameTab("EvtRate"); 225 236 fill9.SetNameTab("EffOnTime"); … … 281 292 //tlist2.AddToList(&fillb); 282 293 tlist2.AddToList(&clean); 283 tlist2.AddToList(&fill0); 294 tlist2.AddToList(&fill0a); 295 tlist2.AddToList(&fill0b); 296 tlist2.AddToList(&fill0r); 284 297 tlist2.AddToList(&hcalc); 285 298 tlist2.AddToList(&fill1);
Note:
See TracChangeset
for help on using the changeset viewer.