Changeset 7402 for trunk/MagicSoft


Ignore:
Timestamp:
11/15/05 11:38:25 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7401 r7402  
    2121
    2222   * macros/optim/optimdisp.C, macros/optim/optimenergy.C,
    23      macros/optim/rfenergyest.C:
     23     macros/optim/rfenergyest.C, macros/optim/optimwobble.C:
    2424     - added some more comments
    2525     - updated
  • trunk/MagicSoft/Mars/macros/optim/optimwobble.C

    r7153 r7402  
    3232    cuts.SetAlphaCut(MFMagicCuts::kWobble);
    3333
     34    /* You can also try (switch on scaling):
     35
     36     fit.SetScaleMode(MAlphaFitter::kBackground);
     37     fit.SetBackgroundFitMin(0.12);
     38     fit.SetBackgroundFitMax(0.5);
     39
     40     cuts.SetThetaCut(MFMagicCuts::kOff);
     41     */
     42
    3443    // -----------------------------------------------------------
    3544
  • trunk/MagicSoft/Mars/mtools/MTFillMatrix.h

    r2744 r7402  
    99class MTask;
    1010class MHMatrix;
     11class MFilter;
    1112
    1213class MTFillMatrix : public MParContainer
     
    1516    MH3      *fReference;
    1617    MRead    *fReader;
     18
    1719    MHMatrix *fDestMatrix1;
    1820    MHMatrix *fDestMatrix2;
     21
    1922    Int_t     fNumDestEvents1;
    2023    Int_t     fNumDestEvents2;
     24
    2125    MTask    *fWriteFile1;
    2226    MTask    *fWriteFile2;
     27
     28    TList     fPreCuts;
    2329
    2430    Bool_t CheckResult(MHMatrix *m, Int_t num) const;
     
    6470    void SetReader(MRead *task) { fReader = task; }
    6571
     72    void AddPreCut(const char *rule);
     73    void AddPreCut(MFilter *f);
     74
    6675    Bool_t Process();
    6776    Bool_t WriteMatrix1(const TString &fname) const { return WriteMatrix(fDestMatrix1, fname, 1); }
Note: See TracChangeset for help on using the changeset viewer.