Changeset 1326 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
04/30/02 12:13:29 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1325 r1326  
    2323   * manalysis/MCT1ReadAscii.cc:
    2424     - Expanded filename to support filnames containing '~'
     25
     26   * mhist/MH3.h:
     27     - removed 'const' to make 0.7 root 3.01/06 compatible
    2528
    2629
  • trunk/MagicSoft/Mars/mdata/MDataChain.cc

    r1305 r1326  
    295295}
    296296
    297 void MDataChain::Print(Option_t *opt = "") const
     297void MDataChain::Print(Option_t *opt) const
    298298{
    299299    fMember->Print();
  • trunk/MagicSoft/Mars/mfilter/MFDataMember.cc

    r1283 r1326  
    114114        fMethodCall->Execute(fObject, l);
    115115        v = l;
    116         return kTRUE;
     116        break;
    117117
    118118    case TMethodCall::kDouble:
    119119        fMethodCall->Execute(fObject, v);
    120         return kTRUE;
     120        break;
    121121
    122122    default:
  • trunk/MagicSoft/Mars/mhist/MH3.h

    r1299 r1326  
    1616{
    1717protected:
    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
    1921
    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];
    2725
    2826public:
Note: See TracChangeset for help on using the changeset viewer.