Changeset 1542 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
10/16/02 10:40:39 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1540 r1542  
    11                                                                  -*-*- END -*-*-
     2 2002/10/16: Thomas Bretz
     3
     4   * macros/readMagic.C:
     5     - added MPrint for MRawEvtHeader
     6     - changed to MPrint to new Skip-Style
     7
     8   * manalysis/MHillasCalc.cc, manalysis/MHillasSrcCalc.cc:
     9     - corrected output stream in case of hex or setfill was used
     10
     11   * mbase/MPrint.[h,cc]:
     12     - introduced new behaviour of PreProcess (EnableSkip)
     13
     14   * mbase/MTaskList.cc:
     15     - fixed a bug in Process which caused Histograms to be written
     16       after each event
     17
     18   * meventdisp/MGEvtDisplay.cc:
     19     - introduced printing of MRawEvtHeader
     20
     21   * mmc/MMcEvt.cxx:
     22     - some small changes
     23     - changed Print output from cout to fLog
     24     - changes to the default values
     25
     26   * mraw/MRawEvtHeader.[h,cc]:
     27     - removed the second empty line after Print
     28     - added Getter-function for the DAQEvtNumber
     29
     30
     31
    232 2002/10/15: Thomas Bretz
    333
  • trunk/MagicSoft/Mars/macros/readMagic.C

    r1540 r1542  
    5858    plist.AddToList(&tlist);
    5959
    60     MReadMarsFile     read("Events", fname);
     60    MReadMarsFile read("Events", fname);
    6161    read.DisableAutoScheme();
    6262
    63     MPrint            print("MMcEvt");
     63    MPrint print1("MMcEvt");
     64    MPrint print2("MRawEvtHeader");
     65    print1.EnableSkip();
     66    print2.EnableSkip();
     67
    6468    MMcPedestalCopy   pcopy;
    6569    MMcPedestalNSBAdd pnsb;
     
    7377
    7478    tlist.AddToList(&read);
    75     tlist.AddToList(&print);
     79    tlist.AddToList(&print1);
     80    tlist.AddToList(&print2);
    7681    tlist.AddToList(&pcopy);
    7782    tlist.AddToList(&pnsb);
  • trunk/MagicSoft/Mars/manalysis/MHillasCalc.cc

    r1540 r1542  
    125125    *fLog << inf << endl;
    126126    *fLog << GetDescriptor() << " execution statistics:" << endl;
     127    *fLog << dec << setfill(' ');
    127128    *fLog << " " << setw(7) << fErrors[1] << " (" << setw(3) << (int)(fErrors[1]*100/GetNumExecutions()) << "%) Evts skipped due to: Event has less than 3 pixels" << endl;
    128129    *fLog << " " << setw(7) << fErrors[2] << " (" << setw(3) << (int)(fErrors[2]*100/GetNumExecutions()) << "%) Evts skipped due to: Calculated Size == 0" << endl;
  • trunk/MagicSoft/Mars/manalysis/MHillasSrcCalc.cc

    r1540 r1542  
    122122    *fLog << inf << endl;
    123123    *fLog << GetDescriptor() << " execution statistics:" << endl;
     124    *fLog << dec << setfill(' ');
    124125    *fLog << " " << fErrors << " (" << (int)(fErrors*100/GetNumExecutions()) << "%) Evts skipped due to: Dist==0" << endl;
    125126    *fLog << endl;
  • trunk/MagicSoft/Mars/mbase/MPrint.cc

    r1080 r1542  
    6767//  must be overloaded. You can also set an option string to use
    6868//  when calling TObject::Print
     69//  If you want that the MPrint instance is removed from the tasklist
     70//  if the container to be printed is not found in the PreProcess, call:
     71//     MPrint::EnableSkip();
    6972//
    7073MPrint::MPrint(const char *obj, const char *option,
     
    8487//  must be overloaded. You can also set an option string to use
    8588//  when calling TObject::Print
     89//  if the container to be printed is not found in the PreProcess, call:
     90//     MPrint::EnableSkip();
    8691//
    8792MPrint::MPrint(const TObject *obj, const char *option,
     
    118123    // If it couldn't get found stop Eventloop
    119124    //
    120     *fLog << err << dbginf << fObjName << " not found... aborting." << endl;
    121     return kFALSE;
     125    *fLog << err << dbginf << fObjName << " not found... ";
     126    if (TestBit(kSKIP))
     127    {
     128        *fLog << "removing task from list." << endl;
     129        return kSKIP;
     130    }
     131    else
     132    {
     133        *fLog << "aborting." << endl;
     134        return kFALSE;
     135    }
    122136}
    123137
  • trunk/MagicSoft/Mars/mbase/MPrint.h

    r1014 r1542  
    1515    TString fOption;         // Print option
    1616
     17    enum { kSkip = BIT(14) };
     18
    1719    void Init(const char *name, const char *title);
    1820
     
    2224
    2325    void SetOption(Option_t *option) { fOption = option; }
     26    void EnableSkip(Bool_t skip=kTRUE) { skip ? SetBit(kSkip) : ResetBit(kSkip); }
    2427
    2528    Bool_t PreProcess(MParList *pList);
  • trunk/MagicSoft/Mars/mbase/MTaskList.cc

    r1540 r1542  
    380380    if (!noreset)
    381381    {
    382         fParList->SetReadyToSave();
     382        fParList->SetReadyToSave(kFALSE);
    383383        fParList->Reset();
    384384        fParList->SetBit(MParList::kDoNotReset);
  • trunk/MagicSoft/Mars/meventdisp/MGEvtDisplay.cc

    r1540 r1542  
    4646#include "MReadMarsFile.h"
    4747#include "MGeomCamMagic.h"
     48#include "MRawEvtHeader.h"
    4849
    4950#include "MMcEvt.hxx"
     
    484485    txt += "PhEl";
    485486
     487    const MRawEvtHeader *hed = (MRawEvtHeader*)GetParList()->FindObject("MRawEvtHeader");
     488    if (hed)
     489    {
     490        txt += "  DAQEvt #";
     491        txt += hed->GetDAQEvtNumber();
     492    }
     493
    486494    fEvtInfo->SetText(txt);
    487495}
  • trunk/MagicSoft/Mars/mraw/MRawEvtHeader.cc

    r1082 r1542  
    214214        }
    215215    }
    216 
    217     *fLog << endl;
    218216    *fLog << endl;
    219217}
  • trunk/MagicSoft/Mars/mraw/MRawEvtHeader.h

    r1018 r1542  
    5454
    5555    UShort_t GetTrigType() const { return fTrigType; }
     56    UInt_t GetDAQEvtNumber() const { return fDAQEvtNumber; }
    5657
    5758    int ReadEvt(istream& fin);
Note: See TracChangeset for help on using the changeset viewer.