Changeset 1326 for trunk/MagicSoft
- Timestamp:
- 04/30/02 12:13:29 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1325 r1326 23 23 * manalysis/MCT1ReadAscii.cc: 24 24 - Expanded filename to support filnames containing '~' 25 26 * mhist/MH3.h: 27 - removed 'const' to make 0.7 root 3.01/06 compatible 25 28 26 29 -
trunk/MagicSoft/Mars/mdata/MDataChain.cc
r1305 r1326 295 295 } 296 296 297 void MDataChain::Print(Option_t *opt = "") const297 void MDataChain::Print(Option_t *opt) const 298 298 { 299 299 fMember->Print(); -
trunk/MagicSoft/Mars/mfilter/MFDataMember.cc
r1283 r1326 114 114 fMethodCall->Execute(fObject, l); 115 115 v = l; 116 return kTRUE;116 break; 117 117 118 118 case TMethodCall::kDouble: 119 119 fMethodCall->Execute(fObject, v); 120 return kTRUE;120 break; 121 121 122 122 default: -
trunk/MagicSoft/Mars/mhist/MH3.h
r1299 r1326 16 16 { 17 17 protected: 18 const Int_t fDimension; // Number of dimensions of histogram 18 // Could be const but root < 3.02/06 doesn't like this... 19 Int_t fDimension; // Number of dimensions of histogram 20 TH1 *fHist; // Histogram to fill 19 21 20 TH1 *fHist; // Histogram to fill 21 22 TString fDataMember[3]; // Data member which should be filled into the histogram x 23 24 MDataChain *fData[3]; // Object from which the data is filled 25 26 Double_t fScale[3]; 22 TString fDataMember[3]; // Data member which should be filled into the histogram x 23 MDataChain *fData[3]; // Object from which the data is filled 24 Double_t fScale[3]; 27 25 28 26 public:
Note:
See TracChangeset
for help on using the changeset viewer.