Changeset 8091 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 10/17/06 14:39:40 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/manalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MFiltercutsCalc.cc
r2206 r8091 40 40 #include "MLogManip.h" 41 41 42 #include "MF.h" 43 #include "MFDataChain.h" 42 #include "MFDataPhrase.h" 44 43 #include "MParList.h" 45 44 #include "MFilterList.h" … … 98 97 } 99 98 99 /* 100 100 // -------------------------------------------------------------------------- 101 101 // 102 102 // 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. 105 105 // 106 106 void MFiltercutsCalc::AddCut(const char *name, Double_t lo, Double_t up) 107 107 { 108 AddToList(new MFData Chain(name, '>', lo));109 AddToList(new MFData Chain(name, '<', up));108 AddToList(new MFDataPhrase(Form("%s>%.15f", name, lo)); 109 AddToList(new MFDataPhrase(name, '<', up)); 110 110 } 111 111 … … 113 113 // 114 114 // 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. 117 117 // 118 118 void MFiltercutsCalc::AddCut(const char *name, Double_t val) … … 120 120 AddToList(new MFDataChain(Form("fabs(%s)", name), '<', val)); 121 121 } 122 */ 122 123 123 124 // -------------------------------------------------------------------------- … … 125 126 // There is MUCH space for speed improvement! 126 127 // 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. 128 129 // 129 130 void MFiltercutsCalc::AddCut(const char *cut) 130 131 { 131 AddToList(new MF (cut));132 AddToList(new MFDataPhrase(cut)); 132 133 } 133 134 … … 135 136 // 136 137 // 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. 138 139 // 139 140 void MFiltercutsCalc::AddCut(MFilter *f) -
trunk/MagicSoft/Mars/manalysis/MFiltercutsCalc.h
r2206 r8091 36 36 TString GetHadronnessName() const { return fHadronnessName; } 37 37 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); 40 40 void AddCut(const char *cut); 41 41 void AddCut(MFilter *f);
Note:
See TracChangeset
for help on using the changeset viewer.