Ignore:
Timestamp:
07/26/06 11:46:55 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfbase
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfbase/MF.cc

    r7601 r7804  
    414414}
    415415
    416 void MF::StreamPrimitive(ofstream &out) const
     416void MF::StreamPrimitive(ostream &out) const
    417417{
    418418    out << "   MF " << GetUniqueName();
  • trunk/MagicSoft/Mars/mfbase/MF.h

    r6932 r7804  
    3131    MFilter *ParseString(TString txt, Int_t level);
    3232
    33     void StreamPrimitive(ofstream &out) const;
     33    void StreamPrimitive(ostream &out) const;
    3434
    3535public:
  • trunk/MagicSoft/Mars/mfbase/MFDataChain.cc

    r6869 r7804  
    146146//  Crahses if default constructor called.
    147147//
    148 void MFDataChain::StreamPrimitive(ofstream &out) const
     148void MFDataChain::StreamPrimitive(ostream &out) const
    149149{
    150150    out << "   MFDataChain " << GetUniqueName() << "(\"";
  • trunk/MagicSoft/Mars/mfbase/MFDataChain.h

    r5875 r7804  
    2828    Bool_t  fResult;           //!
    2929
    30     void StreamPrimitive(ofstream &out) const;
     30    void StreamPrimitive(ostream &out) const;
    3131
    3232    Int_t PreProcess(MParList *pList);
  • trunk/MagicSoft/Mars/mfbase/MFDataMember.cc

    r5875 r7804  
    139139}
    140140
    141 void MFDataMember::StreamPrimitive(ofstream &out) const
     141void MFDataMember::StreamPrimitive(ostream &out) const
    142142{
    143143    out << "   MFDataMember " << GetUniqueName() << "(\"";
  • trunk/MagicSoft/Mars/mfbase/MFDataMember.h

    r5875 r7804  
    2222    Double_t fValue;
    2323
    24     void StreamPrimitive(ofstream &out) const;
     24    void StreamPrimitive(ostream &out) const;
    2525
    2626    Int_t PreProcess(MParList *pList);
  • trunk/MagicSoft/Mars/mfbase/MFEventSelector.cc

    r7418 r7804  
    208208    return kTRUE;
    209209}
    210 
    211 void MFEventSelector::StreamPrimitive(ofstream &out) const
    212 {
    213     /*
    214     out << "   MF " << GetUniqueName();
    215 
    216     if (!fFilter)
    217     {
    218         out << ";" << endl;
    219         return;
    220     }
    221 
    222     out << "(\"" << fFilter->GetRule() << "\"";
    223         if (fName!=gsDefName || fTitle!=gsDefTitle)
    224     {
    225         out << "(\"" << fName << "\"";
    226         if (fTitle!=gsDefTitle)
    227             out << ", \"" << fTitle << "\"";
    228     }
    229     out << ");" << endl;
    230     */
    231 }
  • trunk/MagicSoft/Mars/mfbase/MFEventSelector.h

    r3330 r7804  
    1919    Bool_t  fResult;          //! Reseult of a single selection
    2020
    21     void StreamPrimitive(ofstream &out) const;
    22 
    2321    Int_t PreProcess(MParList *pList);
    2422    Int_t Process();
  • trunk/MagicSoft/Mars/mfbase/MFilterList.cc

    r7643 r7804  
    264264void MFilterList::SetAccelerator(Byte_t acc)
    265265{
    266     fFilters.ForEach(MTask, SetAccelerator)(acc);
     266    fFilters.R__FOR_EACH(MTask, SetAccelerator)(acc);
    267267    MFilter::SetAccelerator(acc);
    268268}
     
    377377// gui elements to a macro-file.
    378378//
    379 void MFilterList::StreamPrimitive(ofstream &out) const
     379void MFilterList::StreamPrimitive(ostream &out) const
    380380{
    381381    out << "   MFilterList " << ToLower(fName) << "(\"";
     
    506506void MFilterList::SetVariables(const TArrayD &arr)
    507507{
    508     fFilters.ForEach(MFilter, SetVariables)(arr);
    509 }
     508    fFilters.R__FOR_EACH(MFilter, SetVariables)(arr);
     509}
  • trunk/MagicSoft/Mars/mfbase/MFilterList.h

    r7643 r7804  
    2929    enum { kIsOwner = BIT(14) };
    3030
    31     void StreamPrimitive(ofstream &out) const;
     31    void StreamPrimitive(ostream &out) const;
    3232
    3333    void Init(const char *name, const char *title);
Note: See TracChangeset for help on using the changeset viewer.