Changeset 1004 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 10/29/01 11:35:19 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MParContainer.h
r1003 r1004 78 78 virtual void AsciiWrite(ofstream &fout) const; 79 79 80 ClassDef(MParContainer, 1) //The basis for all parameter containers80 ClassDef(MParContainer, 0) //The basis for all parameter containers 81 81 }; 82 82 */ -
trunk/MagicSoft/Mars/mbase/MWriteFile.h
r961 r1004 6 6 #endif 7 7 8 class TFile;9 10 8 class MWriteFile : public MTask 11 9 { 12 10 private: 13 virtual Bool_t IsFileOpen() const = 0; 14 virtual void CheckAndWrite() const = 0; 15 virtual Bool_t GetContainer(MParList *pList) = 0; 11 Bool_t PreProcess(MParList *pList); 12 Bool_t Process(); 13 Bool_t PostProcess(); 14 15 virtual Bool_t IsFileOpen() const = 0; 16 virtual void CheckAndWrite() const = 0; 17 virtual Bool_t GetContainer(MParList *pList) = 0; 16 18 virtual const char *GetFileName() const = 0; 17 18 public:19 20 virtual Bool_t PreProcess(MParList *pList);21 virtual Bool_t Process();22 virtual Bool_t PostProcess();23 19 24 20 ClassDef(MWriteFile, 0) // Base class for tasks to write single containers to several output formats -
trunk/MagicSoft/Mars/mbase/MWriteRootFile.cc
r1003 r1004 46 46 ClassImp(MWriteRootFile); 47 47 48 #define kFillTree BIT(1 )48 #define kFillTree BIT(14) 49 49 50 50 // --------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.