Changeset 8076 for trunk/MagicSoft/Mars
- Timestamp:
- 10/16/06 20:27:58 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfbase/MFDataChain.cc
r7804 r8076 28 28 // 29 29 // With this filter you can filter in all variables from Mars parameter 30 // containers using rules (for more details see MData Chain).30 // containers using rules (for more details see MDataPhrase). 31 31 // 32 32 // In the constructor you can give the filter variable, like … … 52 52 53 53 #include "MDataValue.h" 54 #include "MDataPhrase.h" 54 55 55 56 #include "MLog.h" … … 86 87 MFDataChain::MFDataChain(const char *rule, const char type, const char *cond, 87 88 const char *name, const char *title) 88 : fData(rule), fCond(new MData Chain(cond))89 : fData(rule), fCond(new MDataPhrase(cond)) 89 90 { 90 91 fName = name ? name : "MFDataChain"; -
trunk/MagicSoft/Mars/mfit/MTFitLoop.cc
r4358 r8076 32 32 // 33 33 // The parameters which are optimized must be stored in a MParContainer 34 // which overwrites SetVariables(). Eg. a MData Chainor MF overwrites34 // which overwrites SetVariables(). Eg. a MDataPhrase or MF overwrites 35 35 // SetVariables(). In a MF all arguments given as [0], [1] are 36 36 // set by SetVariables (in MDataValue). -
trunk/MagicSoft/Mars/mhist/MHCompProb.cc
r3325 r8076 47 47 #include "MParList.h" 48 48 #include "MBinning.h" 49 #include "MData Chain.h"49 #include "MDataPhrase.h" 50 50 51 51 #include "MMcEvt.hxx" … … 97 97 void MHCompProb::Add(const char *rule, Int_t n, Float_t min, Float_t max) 98 98 { 99 MData Chain &chain = *new MDataChain(rule);99 MDataPhrase &chain = *new MDataPhrase(rule); 100 100 fData->Add(&chain); 101 101
Note:
See TracChangeset
for help on using the changeset viewer.