Changeset 8075
- Timestamp:
- 10/16/06 20:14:15 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.cc
r7804 r8075 55 55 56 56 #include "MParList.h" 57 #include "MDataChain.h"57 //#include "MDataPhrase.h" 58 58 #include "MDataArray.h" 59 59 … … 125 125 while ((data=Next())) 126 126 { 127 MData Chain *chain = new MDataChain(data->GetName());127 MDataPhrase *chain = new MDataPhrase(data->GetName()); 128 128 if (!chain->PreProcess(plist)) 129 129 { -
trunk/MagicSoft/Mars/mfileio/MWriteAsciiFile.cc
r4889 r8075 54 54 55 55 #include "MDataList.h" // MDataList 56 #include "MData Chain.h" // MDataChain56 #include "MDataPhrase.h" // MDataPhrase 57 57 #include "MDataValue.h" // MDataValue 58 58 #include "MDataMember.h" // MDataMember … … 247 247 // 248 248 // Add a rule to be written as a column to the ascii file. 249 // For more information about rules see MData Chain.249 // For more information about rules see MDataPhrase. 250 250 // 251 251 // eg: MWriteAsciiFile::AddColumn("log10(MHillas.fEnergy)/2") … … 253 253 void MWriteAsciiFile::AddColumn(const TString rule) 254 254 { 255 MData Chain *chain = new MDataChain(rule);255 MDataPhrase *chain = new MDataPhrase(rule); 256 256 fList.Add(chain); 257 257 } -
trunk/MagicSoft/Mars/mhbase/MHMatrix.cc
r8074 r8075 148 148 // Add a new column to the matrix. This can only be done before the first 149 149 // event (row) was filled into the matrix. For the syntax of the rule 150 // see MData Chain.150 // see MDataPhrase. 151 151 // Returns the index of the new column, -1 in case of failure. 152 152 // (0, 1, 2, ... for the 1st, 2nd, 3rd, ...)
Note:
See TracChangeset
for help on using the changeset viewer.