Changeset 2653 for trunk/MagicSoft


Ignore:
Timestamp:
12/11/03 16:27:08 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2652 r2653  
    55                                                 -*-*- END OF LINE -*-*-
    66 
    7 2003/12/11: Sebastian Raducci & Villi Scalzotto
     7 2003/12/11: Sebastian Raducci & Villi Scalzotto
     8
    89   * manalysis/MArrivalTime.[h,cc]
    9         - Added (new container)
    10         - Preliminary version: do not use it
     10     - Added (new container)
     11     - Preliminary version: do not use it
    1112
    1213   * manalysis/MArrivalTimeCalc.[h,cc]
    13         - Added (new task)
     14     - Added (new task)
    1415
    1516   * mraw/MRawEvtPixelIter.[h,cc]
    16         - Added new method GetIdxMaxHiLoGainSample()
     17     - Added new method GetIdxMaxHiLoGainSample()
    1718   
    1819   * mraw/MRawEvtData.cc
    19         - Added new case in GetPixelContent() method
     20     - Added new case in GetPixelContent() method
    2021
    2122   * 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
    2630   * 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
    2935
    3036 2003/12/11: Markus Gaug
     37
    3138   * 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)
    3442
    3543   * mhist/MHCalibrationBlindPixel:
    36         - do the consistency check fitting the pedestal
     44     - do the consistency check fitting the pedestal
    3745
    3846   * 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
    4049
    4150   * manalysis/MCalibrationPix:
    4251   * 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
    4556
    4657 2003/12/11: Thomas Bretz
     
    5061     - added ReadBinary
    5162     
    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]:
    5467     - adapted to new DAQ file format Version 2
    5568     - changed ClassDef version accordingly
    5669
     70   * mraw/RawIncl.h:
     71     - added TArrayC
     72
     73   * mfileio/MCT1ReadPreProc.cc:
     74     - tried to change reading CT1 data accordingly
     75
    5776
    5877
     
    81100     
    82101   * mreport/MReportFileRead.[h,cc]:
    83      - replaced non working ReadLine by ReadToDelim (reason unknown!)
    84102     - added SetHasNoHeader and kHasNoHeader
    85103
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc

    r2604 r2653  
    333333    *fLog << (outpars.irunduration_secs/60)%60 << "m";
    334334    *fLog << outpars.irunduration_secs%60 << "s" << endl;
    335     fRawRunHeader->SetMJD(outpars.istart_mjdate_day);
     335    fRawRunHeader->SetRunTime(outpars.istart_mjdate_day, outpars.iend_mjdate_day);
    336336    fRawRunHeader->SetReadyToSave();
    337337
     
    443443           &fpreprocversion,    &structversion,
    444444           &outpars.itelescope, &outpars.irunnum,
    445            &dummy/*&outpars.eruntype*/,   &outpars.iproc_mjdate);
     445           &dummy/*&outpars.eruntype*/, &outpars.iproc_mjdate);
    446446
    447447    if (fpreprocversion<0.6)
     
    905905    //  int   isecs_since_midday; // seconds passed since midday before sunset (JD of run start)
    906906    //  int   isecfrac_200ns;     // fractional part of isecs_since_midday
    907     fTime->SetCT1Time((UInt_t)fRawRunHeader->GetMJD(), event.isecfrac_200ns, event.isecs_since_midday);
     907    fTime->SetCT1Time((UInt_t)fRawRunHeader->GetRunStart().GetMjd(), event.isecfrac_200ns, event.isecs_since_midday);
    908908    fTime->SetReadyToSave();
    909909
  • trunk/MagicSoft/Mars/mraw/MRawRunHeader.h

    r2636 r2653  
    7070    void SetNumCrates(UShort_t a)         { fNumCrates=a; }
    7171    void SetNumPixInCrate(UShort_t a)     { fNumPixInCrate=a; }
     72    void SetRunTime(Float_t start, Float_t stop)
     73    { fRunStart.SetMjd(start); fRunStop.SetMjd(stop); }
    7274
    7375    // This is to get the numbers...
Note: See TracChangeset for help on using the changeset viewer.