Changeset 7653


Ignore:
Timestamp:
04/23/06 14:11:40 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7652 r7653  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2006/04/23 Thomas Bretz
     22
     23   * mhist/MHHadronness.cc:
     24     - do not reset the two hadronness-histograms in SetupFill
     25       otherwise MJTrainSeparation cannot work correctly
     26
     27
    2028
    2129 2006/04/22 Thomas Bretz
  • trunk/MagicSoft/Mars/mhist/MHHadronness.cc

    r7413 r7653  
    165165    fHadronness = (MParameterD*)plist->FindObject("MHadronness");
    166166
    167     fGhness->Reset();
    168     fPhness->Reset();
     167//    fGhness->Reset();
     168//    fPhness->Reset();
    169169
    170170    /*
  • trunk/MagicSoft/Mars/mjtrain/MJTrainSeparation.cc

    r7552 r7653  
    509509    plist.AddToList(&binsy);
    510510
    511     MH3 h31("MHillas.fSize", "MHadronness.fVal");
    512     MH3 h32("MHillas.fSize", "MHadronness.fVal");
     511    MH3 h31("MHillas.fSize",  "MHadronness.fVal");
     512    MH3 h32("MHillas.fSize",  "MHadronness.fVal");
     513    MH3 h40("MMcEvt.fEnergy", "MHadronness.fVal");
    513514    h31.SetTitle("Background probability vs. Size:Size [phe]:Hadronness");
    514515    h32.SetTitle("Background probability vs. Size:Size [phe]:Hadronness");
     516    h40.SetTitle("Background probability vs. Energy:Energy [GeV]:Hadronness");
    515517
    516518    MHHadronness hist;
     
    520522    MFillH fillh1(&h31);
    521523    MFillH fillh2(&h32);
     524    MFillH fillh4(&h40);
    522525    fillh1.SetNameTab("Background");
    523     fillh2.SetNameTab("Gammas");
     526    fillh2.SetNameTab("GammasH");
     527    fillh4.SetNameTab("GammasE");
    524528    fillh0.SetBit(MFillH::kDoNotDisplay);
    525529
     
    562566    tlist.Replace(&read4);
    563567    tlist.Replace(&fillh2);
     568    tlist.AddAfter(&fillh2, &fillh4);
    564569
    565570    if (!loop.Eventloop())
Note: See TracChangeset for help on using the changeset viewer.