Ignore:
Timestamp:
10/17/06 14:39:40 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MFiltercutsCalc.cc

    r2206 r8091  
    4040#include "MLogManip.h"
    4141
    42 #include "MF.h"
    43 #include "MFDataChain.h"
     42#include "MFDataPhrase.h"
    4443#include "MParList.h"
    4544#include "MFilterList.h"
     
    9897}
    9998
     99/*
    100100// --------------------------------------------------------------------------
    101101//
    102102// There is MUCH space for speed improvement!
    103 // Add MF(lo<name && name<up) to the filter list (&&),
    104 // for more details see MF::MF(), too.
     103// Add MFDataPhrase(lo<name && name<up) to the filter list (&&),
     104// for more details see MFDataPhrase::MFDataPhrase(), too.
    105105//
    106106void MFiltercutsCalc::AddCut(const char *name, Double_t lo, Double_t up)
    107107{
    108     AddToList(new MFDataChain(name, '>', lo));
    109     AddToList(new MFDataChain(name, '<', up));
     108    AddToList(new MFDataPhrase(Form("%s>%.15f", name, lo));
     109    AddToList(new MFDataPhrase(name, '<', up));
    110110}
    111111
     
    113113//
    114114// There is MUCH space for speed improvement!
    115 // Add MF(fabs(name)<val) to the filter list (&&),
    116 // for more details see MF::MF(), too.
     115// Add MFDataPhrase(fabs(name)<val) to the filter list (&&),
     116// for more details see MFDataPhrase::MFDataPhrase(), too.
    117117//
    118118void MFiltercutsCalc::AddCut(const char *name, Double_t val)
     
    120120    AddToList(new MFDataChain(Form("fabs(%s)", name), '<', val));
    121121}
     122*/
    122123
    123124// --------------------------------------------------------------------------
     
    125126// There is MUCH space for speed improvement!
    126127// Add 'cut' as MF(cut) to the filter list (&&),
    127 // for more details see MF::MF(), too.
     128// for more details see MFDataPhrase::MFDataPhrase(), too.
    128129//
    129130void MFiltercutsCalc::AddCut(const char *cut)
    130131{
    131     AddToList(new MF(cut));
     132    AddToList(new MFDataPhrase(cut));
    132133}
    133134
     
    135136//
    136137// There is MUCH space for speed improvement!
    137 // Add cut to filter list (&&), for more details see MF::MF(), too.
     138// Add cut to filter list (&&), for more details see MFDataPhrase::MFDataPhrase(), too.
    138139//
    139140void MFiltercutsCalc::AddCut(MFilter *f)
  • trunk/MagicSoft/Mars/manalysis/MFiltercutsCalc.h

    r2206 r8091  
    3636    TString GetHadronnessName() const { return fHadronnessName; }
    3737
    38     void AddCut(const char *name, Double_t lo, Double_t up);
    39     void AddCut(const char *name, Double_t val);
     38    //void AddCut(const char *name, Double_t lo, Double_t up);
     39    //void AddCut(const char *name, Double_t val);
    4040    void AddCut(const char *cut);
    4141    void AddCut(MFilter *f);
Note: See TracChangeset for help on using the changeset viewer.