Changeset 2653 for trunk/MagicSoft
- Timestamp:
- 12/11/03 16:27:08 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2652 r2653 5 5 -*-*- END OF LINE -*-*- 6 6 7 2003/12/11: Sebastian Raducci & Villi Scalzotto 7 2003/12/11: Sebastian Raducci & Villi Scalzotto 8 8 9 * manalysis/MArrivalTime.[h,cc] 9 10 10 - Added (new container) 11 - Preliminary version: do not use it 11 12 12 13 * manalysis/MArrivalTimeCalc.[h,cc] 13 14 - Added (new task) 14 15 15 16 * mraw/MRawEvtPixelIter.[h,cc] 16 17 - Added new method GetIdxMaxHiLoGainSample() 17 18 18 19 * mraw/MRawEvtData.cc 19 20 - Added new case in GetPixelContent() method 20 21 21 22 * mmain/MEventDisplay.cc 22 - Added new tab in the camera event display to show the 23 arrival time. 24 25 2003/12/11: Abelardo Moralejo 23 - Added new tab in the camera event display to show the arrival 24 time. 25 26 27 28 2003/12/11: Abelardo Moralejo 29 26 30 * manalysis/MGeomApply.cc 27 - Initialize size of the MCalibrationCam object according to 28 camera geometry. 31 - Initialize size of the MCalibrationCam object according to 32 camera geometry. 33 34 29 35 30 36 2003/12/11: Markus Gaug 37 31 38 * manalysis/MExtractSignal, MExtractedSignalPix 32 - Store number of used FADC slices (HIGain, LoGAin) 33 - calculate signal with only 6 most significant slices (2 before, 4 after the maximum) 39 - Store number of used FADC slices (HIGain, LoGAin) 40 - calculate signal with only 6 most significant slices (2 before, 41 4 after the maximum) 34 42 35 43 * mhist/MHCalibrationBlindPixel: 36 44 - do the consistency check fitting the pedestal 37 45 38 46 * mhist/MHCalibrationPixel: 39 - store Hi Gain vs. Lo Gain values to extract the conversion factor 47 - store Hi Gain vs. Lo Gain values to extract the conversion 48 factor 40 49 41 50 * manalysis/MCalibrationPix: 42 51 * manalysis/MCalibrationCam: 43 - separate Hi Gain and Lo Gain 44 - include return of PIN Diode measurement 52 - separate Hi Gain and Lo Gain 53 - include return of PIN Diode measurement 54 55 45 56 46 57 2003/12/11: Thomas Bretz … … 50 61 - added ReadBinary 51 62 52 * mraw/MRawCrateData.[h,c], mraw/MRawFileRead.[h,cc], 53 mraw/MRawRunHeader.[h,cc], mraw/MRawSocketRead.cc: 63 * mraw/MRawCrateData.[h,c], mraw/MRawFileRead.cc, 64 mraw/MRawEvtData.[h,cc], mraw/MRawEvtPixelIter.[h,cc], 65 mraw/MRawRunHeader.[h,cc], mraw/MRawSocketRead.cc, 66 mraw/MRawCrateArray.[h,cc]: 54 67 - adapted to new DAQ file format Version 2 55 68 - changed ClassDef version accordingly 56 69 70 * mraw/RawIncl.h: 71 - added TArrayC 72 73 * mfileio/MCT1ReadPreProc.cc: 74 - tried to change reading CT1 data accordingly 75 57 76 58 77 … … 81 100 82 101 * mreport/MReportFileRead.[h,cc]: 83 - replaced non working ReadLine by ReadToDelim (reason unknown!)84 102 - added SetHasNoHeader and kHasNoHeader 85 103 -
trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc
r2604 r2653 333 333 *fLog << (outpars.irunduration_secs/60)%60 << "m"; 334 334 *fLog << outpars.irunduration_secs%60 << "s" << endl; 335 fRawRunHeader->Set MJD(outpars.istart_mjdate_day);335 fRawRunHeader->SetRunTime(outpars.istart_mjdate_day, outpars.iend_mjdate_day); 336 336 fRawRunHeader->SetReadyToSave(); 337 337 … … 443 443 &fpreprocversion, &structversion, 444 444 &outpars.itelescope, &outpars.irunnum, 445 &dummy/*&outpars.eruntype*/, 445 &dummy/*&outpars.eruntype*/, &outpars.iproc_mjdate); 446 446 447 447 if (fpreprocversion<0.6) … … 905 905 // int isecs_since_midday; // seconds passed since midday before sunset (JD of run start) 906 906 // int isecfrac_200ns; // fractional part of isecs_since_midday 907 fTime->SetCT1Time((UInt_t)fRawRunHeader->Get MJD(), event.isecfrac_200ns, event.isecs_since_midday);907 fTime->SetCT1Time((UInt_t)fRawRunHeader->GetRunStart().GetMjd(), event.isecfrac_200ns, event.isecs_since_midday); 908 908 fTime->SetReadyToSave(); 909 909 -
trunk/MagicSoft/Mars/mraw/MRawRunHeader.h
r2636 r2653 70 70 void SetNumCrates(UShort_t a) { fNumCrates=a; } 71 71 void SetNumPixInCrate(UShort_t a) { fNumPixInCrate=a; } 72 void SetRunTime(Float_t start, Float_t stop) 73 { fRunStart.SetMjd(start); fRunStop.SetMjd(stop); } 72 74 73 75 // This is to get the numbers...
Note:
See TracChangeset
for help on using the changeset viewer.