Changeset 4115
- Timestamp:
- 05/21/04 15:58:32 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4114 r4115 26 26 - changed the inheritance of MRawRead class from MTask to MRead to 27 27 implement the AddFiles(MDirIter &) function in MRawFileRead class. 28 * mraw/MRawFileRead.[h,cc] 29 - implemented a second argument to the AddFile function and skip 30 adding NULL files in the constructor. 31 * mjobs/MJPedestal.cc 32 - uncommented the line to allow the analysis of .raw files. 28 33 29 34 2004/05/20: Markus Gaug -
trunk/MagicSoft/Mars/mjobs/MJPedestal.cc
r4113 r4115 238 238 MGeomCamMagic magiccam; 239 239 MReadMarsFile read("Events"); 240 MRawFileRead rawread( "");240 MRawFileRead rawread(NULL); 241 241 242 242 if (fDataCheck) 243 243 { 244 //rawread.AddFiles(*fRuns);244 rawread.AddFiles(*fRuns); 245 245 tlist.AddToList(&rawread); 246 246 } -
trunk/MagicSoft/Mars/mraw/MRawFileRead.cc
r3800 r4115 109 109 fFileNames->SetOwner(); 110 110 111 AddFile(fname); 111 if(fname!=NULL) 112 AddFile(fname); 112 113 } 113 114 … … 129 130 // wildcard support) 130 131 // 131 Int_t MRawFileRead::AddFile(const char *fname )132 Int_t MRawFileRead::AddFile(const char *fname, Int_t entries) 132 133 { 133 134 TNamed *name = new TNamed(fname, ""); -
trunk/MagicSoft/Mars/mraw/MRawFileRead.h
r3800 r4115 36 36 const TString GetFileName() const; 37 37 38 Int_t AddFile(const char *fname );38 Int_t AddFile(const char *fname, Int_t entries=-1); 39 39 Bool_t Rewind(); 40 40
Note:
See TracChangeset
for help on using the changeset viewer.