Changeset 1422 for trunk


Ignore:
Timestamp:
07/18/02 07:49:39 (22 years ago)
Author:
wittek
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1408 r1422  
    1515   * macros/MagicHillas.C:
    1616     - adopted to new names of MWriteAsciiFile member functions
     17
     18
     19
     20 2002/07/16: Wolfgang Wittek
     21
     22   * new
     23     ---
     24     mhist    : MHEffOnTime     (replaces MHEffOnTimeTime and
     25                                          MHEffOnTimeTheta)
     26                MHThetabarTheta (forgotten to comit last time)
     27                MHThetabarTime  (forgotten to comit last time)
     28                MHGamma         (makes the subtraction SRC-ASRC and
     29                                 counts the events with alpha<alpha0)
     30
     31   * modified
     32     --------
     33     Mars     : Makefile.conf.general
     34                Changelog
     35
     36
     37     mhist    : Makefile
     38                HistLinkDef.h
     39                MHFlux             (performs the flux calculation)
     40
     41                MHAlphaEnergyTheta (replace BinningAlpha by BinningAlphaFlux)
     42                MHAlphaEnergyTime  (replace BinningAlpha by BinningAlphaFlux)
     43
     44     macros   : flux.C       (replace some code by MHGamma,
     45                              replace MHEffOnTimeTime and MHEffOnTimeTheta
     46                              by MHEffOnTime)
     47
     48   * removed
     49     -------
     50     mhist    : MHEffOnTimeTime
     51                MHEffOnTimeTheta
    1752
    1853
  • trunk/MagicSoft/Mars/mhist/MHFlux.cc

    r1415 r1422  
    282282  MBinning binsthetatru("BinningThetatru");
    283283  binsthetatru.SetEdges(7, -2.5, 32.5);
    284   SetBinning((TH1*)aeff, &binsetru, &binsthetatru);
     284  //SetBinning((TH1*)aeff, &binsetru, &binsthetatru);
     285  SetBinning((TH2*)aeff, &binsetru, &binsthetatru);
    285286
    286287  const Int_t netru    = aeff->GetNbinsX();
  • trunk/MagicSoft/Mars/mhist/MHGamma.cc

    r1413 r1422  
    8181    fHist->SetDirectory(NULL);
    8282
    83     SetBinning((TH3D*)fHist, (TH3D*)h1);
     83    // SetBinning((TH3D*)fHist, (TH3D*)h1);
     84    SetBinning((TH1*)fHist, (TH1*)h1);
    8485
    8586    TString strg1 =   (((TH1*)h1)->GetXaxis())->GetTitle();
Note: See TracChangeset for help on using the changeset viewer.