Changeset 8082 for trunk/MagicSoft/Mars/mhvstime/MHVsTime.cc
- Timestamp:
- 10/17/06 09:38:43 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhvstime/MHVsTime.cc
r7971 r8082 50 50 // SetMaxPts(-1) disables this feature. 51 51 // 52 // 53 // Class Version 2: 54 // ---------------- 55 // + MData *fData; // Object from which the data is filled 56 // - MDataChain *fData; // Object from which the data is filled 57 // + MData *fError; // Object from which the error is filled 58 // - MDataChain *fError; // Object from which the error is filled 59 // 52 60 ///////////////////////////////////////////////////////////////////////////// 53 61 #include "MHVsTime.h" … … 67 75 #include "MTime.h" 68 76 #include "MParList.h" 69 #include "MData Chain.h"77 #include "MDataPhrase.h" 70 78 #include "MRawEvtHeader.h" 71 79 … … 80 88 // 81 89 // Default constructor. For more informations about a valid rule 82 // see MData Chain.90 // see MDataPhrase. 83 91 // 84 92 MHVsTime::MHVsTime(const char *rule, const char *error) … … 92 100 return; 93 101 94 fData = new MData Chain(rule);102 fData = new MDataPhrase(rule); 95 103 96 104 if (error) 97 fError = new MData Chain(error);105 fError = new MDataPhrase(error); 98 106 99 107 fGraph = error ? new TGraphErrors : new TGraph; … … 141 149 // -------------------------------------------------------------------------- 142 150 // 143 // PreProcess the MData Chain. Create a new TGraph. Delete an old one if151 // PreProcess the MDataPhrase. Create a new TGraph. Delete an old one if 144 152 // already allocated. 145 153 //
Note:
See TracChangeset
for help on using the changeset viewer.