Changeset 656 for trunk/MagicSoft
- Timestamp:
- 03/01/01 16:27:34 (24 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MCT1ReadAscii.cc
r653 r656 39 39 // 40 40 fIn = new ifstream(fFileName); 41 if (! fIn->is_open())41 if (!(*fIn)) 42 42 { 43 43 *fLog << "Error: MCT1ReadAscii::PreProcess: Cannot open file." << endl; -
trunk/MagicSoft/Mars/mraw/MRawEvtData.cc
r654 r656 301 301 // Enhance array by the size which we'll read now 302 302 // 303 Byte_t lo[nlo];304 Byte_t hi[nhi];303 Byte_t *lo = new Byte_t[nlo]; 304 Byte_t *hi = new Byte_t[nhi]; 305 305 306 306 const int npixhi = fHiGainPixId->GetSize(); … … 340 340 //} 341 341 } 342 } 343 342 delete lo; 343 delete hi; 344 } 345
Note:
See TracChangeset
for help on using the changeset viewer.