Changeset 8941 for trunk/MagicSoft


Ignore:
Timestamp:
06/12/08 15:42:26 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8939 r8941  
    5050   * msignal/MSignalCalc.cc:
    5151     - scale the pedestal correctly with the scale
     52
     53   * mjobs/MJStar.cc:
     54     - allow filling of pyrometer information to be skipped
     55
     56   * mhist/MHWeather.cc:
     57     - show also colored labels
     58
     59   * Makefile:
     60     - it seems the libmars.so looses read permissions for group
     61       and others when it is  moved. Now they are set manually
     62
     63   * datacenter/fillsignal.C, datacenter/macros/fillstar.C:
     64     - added filling of calibration pulse position
     65     - use more often NULL in case of no entries. This is less
     66       biasing in case of averaging of values
     67
     68    * macros/tutorials/readrfl.C:
     69      - print run header
     70      - print event header
     71      - skip empty events
     72
     73   * mhist/MHEvent.cc:
     74     - removed the pointing from the histogram names. It's
     75       simply obsolete
     76
     77   * mjobs/MJSpectrum.[h,cc]:
     78     - removed the kolmogorov test from output
     79     - added a new tab showing the energy resolution
     80     - therefore added a new BinningImpact to the list of binnings
     81     - store the ganymed file's file name in the output
     82
     83   * mmain/MEventDisplay.cc:
     84     - skip events without data in the loop not in the code.
     85       This ensures that no task can crash due to this
     86       when processing MCs
     87
     88   * mraw/MRawRunHeader.cc:
     89     - the number of events in format version V9 seems to be
     90       to high by one. We correct for this.
    5291
    5392
  • trunk/MagicSoft/Mars/NEWS

    r8939 r8941  
    6464     (Eest-Emc)/Est and the distributions (Eest-Emc)/Eest vs. Eest
    6565     and (Eest-Emc)/Emc vs Emc.
     66
     67   * fixed mars (event display) for merpped raw-data and MC data
    6668
    6769 ;merpp
  • trunk/MagicSoft/Mars/mmain/MEventDisplay.cc

    r8632 r8941  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MEventDisplay.cc,v 1.62 2007-07-03 14:18:03 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MEventDisplay.cc,v 1.63 2008-06-12 14:40:21 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    235235    tlist->AddToList(read);
    236236
     237    MContinue *mcevts = new MContinue("MRawEvtData.GetNumPixels==0", "ContEmpty");
     238    if (type==2)
     239        tlist->AddToList(mcevts);
     240
    237241    MFEvtNumber *evtnum = new MFEvtNumber;
    238242    tlist->AddToList(evtnum);
     
    607611    MTaskList   *tlist = (MTaskList*)  fEvtLoop->GetTaskList();
    608612    MGeomCam    *geom  = (MGeomCam*)   plist->FindObject("MGeomCam");
    609     MRawEvtData *raw   = (MRawEvtData*)plist->FindObject("MRawEvtData");
     613    //MRawEvtData *raw   = (MRawEvtData*)plist->FindObject("MRawEvtData");
    610614
    611615    //
     
    637641
    638642        // Define other continue conditions
    639         if (raw && raw->GetNumPixels()<1)
    640             rc = kCONTINUE;
     643        //if (raw && raw->GetNumPixels()<1)
     644        //    rc = kCONTINUE;
    641645
    642646    } while (rc==kCONTINUE && dir!=0);
  • trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc

    r8802 r8941  
    484484
    485485    if (fFormatVersion>8)
     486    {
    486487        fin.read((char*)&fNumEventsRead, 4);     // Total=70
     488        fNumEvents--;
     489        fNumEventsRead--;
     490        *fLog << inf << "Format V9: Stored number of events decreased by 1." << endl;
     491    }
    487492
    488493    // New in general features: (should they be included in new MAGIC1 formats, too?)
Note: See TracChangeset for help on using the changeset viewer.