Changeset 7804 for trunk/MagicSoft/Mars/mfbase
- Timestamp:
- 07/26/06 11:46:55 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/mfbase
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfbase/MF.cc
r7601 r7804 414 414 } 415 415 416 void MF::StreamPrimitive(o fstream &out) const416 void MF::StreamPrimitive(ostream &out) const 417 417 { 418 418 out << " MF " << GetUniqueName(); -
trunk/MagicSoft/Mars/mfbase/MF.h
r6932 r7804 31 31 MFilter *ParseString(TString txt, Int_t level); 32 32 33 void StreamPrimitive(o fstream &out) const;33 void StreamPrimitive(ostream &out) const; 34 34 35 35 public: -
trunk/MagicSoft/Mars/mfbase/MFDataChain.cc
r6869 r7804 146 146 // Crahses if default constructor called. 147 147 // 148 void MFDataChain::StreamPrimitive(o fstream &out) const148 void MFDataChain::StreamPrimitive(ostream &out) const 149 149 { 150 150 out << " MFDataChain " << GetUniqueName() << "(\""; -
trunk/MagicSoft/Mars/mfbase/MFDataChain.h
r5875 r7804 28 28 Bool_t fResult; //! 29 29 30 void StreamPrimitive(o fstream &out) const;30 void StreamPrimitive(ostream &out) const; 31 31 32 32 Int_t PreProcess(MParList *pList); -
trunk/MagicSoft/Mars/mfbase/MFDataMember.cc
r5875 r7804 139 139 } 140 140 141 void MFDataMember::StreamPrimitive(o fstream &out) const141 void MFDataMember::StreamPrimitive(ostream &out) const 142 142 { 143 143 out << " MFDataMember " << GetUniqueName() << "(\""; -
trunk/MagicSoft/Mars/mfbase/MFDataMember.h
r5875 r7804 22 22 Double_t fValue; 23 23 24 void StreamPrimitive(o fstream &out) const;24 void StreamPrimitive(ostream &out) const; 25 25 26 26 Int_t PreProcess(MParList *pList); -
trunk/MagicSoft/Mars/mfbase/MFEventSelector.cc
r7418 r7804 208 208 return kTRUE; 209 209 } 210 211 void MFEventSelector::StreamPrimitive(ofstream &out) const212 {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 19 19 Bool_t fResult; //! Reseult of a single selection 20 20 21 void StreamPrimitive(ofstream &out) const;22 23 21 Int_t PreProcess(MParList *pList); 24 22 Int_t Process(); -
trunk/MagicSoft/Mars/mfbase/MFilterList.cc
r7643 r7804 264 264 void MFilterList::SetAccelerator(Byte_t acc) 265 265 { 266 fFilters. ForEach(MTask, SetAccelerator)(acc);266 fFilters.R__FOR_EACH(MTask, SetAccelerator)(acc); 267 267 MFilter::SetAccelerator(acc); 268 268 } … … 377 377 // gui elements to a macro-file. 378 378 // 379 void MFilterList::StreamPrimitive(o fstream &out) const379 void MFilterList::StreamPrimitive(ostream &out) const 380 380 { 381 381 out << " MFilterList " << ToLower(fName) << "(\""; … … 506 506 void MFilterList::SetVariables(const TArrayD &arr) 507 507 { 508 fFilters. ForEach(MFilter, SetVariables)(arr);509 } 508 fFilters.R__FOR_EACH(MFilter, SetVariables)(arr); 509 } -
trunk/MagicSoft/Mars/mfbase/MFilterList.h
r7643 r7804 29 29 enum { kIsOwner = BIT(14) }; 30 30 31 void StreamPrimitive(o fstream &out) const;31 void StreamPrimitive(ostream &out) const; 32 32 33 33 void Init(const char *name, const char *title);
Note:
See TracChangeset
for help on using the changeset viewer.