Changeset 7022 for trunk/MagicSoft


Ignore:
Timestamp:
05/12/05 19:20:44 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7020 r7022  
    4747
    4848
     49 2005/05/12 Thomas Bretz
     50
     51   * mcalib/MCalibrationChargeCam.cc:
     52     - fixed a bug in FinalizeArrivalTime which caused Form() to hang
     53
     54   * mmuon/MHMounPar.[h,cc]
     55     - added a line showing a reference shape
     56
     57   * star.rc:
     58     - added setup strings for software trigger
     59
     60
     61
    4962 2005/05/12 Markus Meyer
     63
     64   * mmuon/MHMounPar.[h,cc]
     65     - added function Paint. This function integrates the TProfile
     66       ArcWidth/Radius Vs. Radius between certain values and shows
     67       the result in the Status Display
    5068
    5169   * mmjobs/MJStar.cc
     
    5472   * star.rc
    5573     - changed the default values for the final muon cuts
    56 
    57 
    58 
    59  2005/05/12 Thomas Bretz
    60 
    61    * mcalib/MCalibrationChargeCam.cc:
    62      - fixed a bug in FinalizeArrivalTime which caused Form() to hang
    63 
    64 
    65 
    66  2005/05/12 Markus Meyer
    67 
    68    * mmuon/MHMounPar.[h,cc]
    69      - added function Paint. This function integrates the TProfile
    70        ArcWidth/Radius Vs. Radius between certain values and shows
    71        the result in the Status Display
    7274
    7375
  • trunk/MagicSoft/Mars/NEWS

    r7013 r7022  
    11                                                               -*-*- END -*-*-
    22 *** Version <cvs>
     3
     4   - added muon support to star. A new tab "MHMuonPar" is displayed.
     5     The lower right plot is an estimate of the point spread
     6     function. A reference value is displayed. To get the real PSF
     7     you must compare with MC. The setup for the muon analysis
     8     is done in star.rc. More informations can be found in
     9     MHSingleMuon and MHCalibParCalc
    310
    411   - added a full featured spectrum program (sponde) which reads
     
    3744   - support for MRunIter has been removed from the job classes (use
    3845     the setter functions of MSeqeunce instead)
    39 
    40    - added muon support to star
    4146
    4247   - fixed a bug in MExtractTimeAndchargeSpline which could cause
  • trunk/MagicSoft/Mars/mmuon/MHMuonPar.cc

    r7015 r7022  
    4545
    4646#include <TH1.h>
     47#include <TF1.h>
    4748#include <TPad.h>
    4849#include <TLatex.h>
     
    207208    fHistBroad.Draw();
    208209
     210    TF1 ref("RefShape", "0.112*x*x - 0.413*x + 0.404", 0.7, 1.2);
     211    ref.SetLineColor(kBlue);
     212    ref.SetLineWidth(1);
     213    ref.SetLineStyle(kDashed);
     214    ref.DrawCopy("same");
     215
    209216    AppendPad("pad4");
    210217}
  • trunk/MagicSoft/Mars/star.rc

    r7018 r7022  
    4545
    4646# -------------------------------------------------------------------------
     47# Use this if you want to change the parameters of the software trigger
     48# -------------------------------------------------------------------------
     49
     50#FilterSwTrigger.Threshold:    5
     51#FilterSwTrigger.NumNeighbors: 4
     52#FilterSwTrigger.TimeWindow:   0.5
     53
     54# -------------------------------------------------------------------------
    4755# Setup or switch off the muon analysis here
    4856# -------------------------------------------------------------------------
     
    7381# -------------------------------------------------------------------------
    7482# -------------------------------------------------------------------------
    75 #MJStar.MHillasCalc.IdxIsland: 0
     83#MHillasCalc.IdxIsland: 0
    7684
Note: See TracChangeset for help on using the changeset viewer.