Changeset 8310 for trunk/MagicSoft/Mars/mfbase/MFDataPhrase.cc
- Timestamp:
- 02/09/07 09:02:23 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfbase/MFDataPhrase.cc
r8276 r8310 18 18 ! Author(s): Thomas Bretz 01/2002 <mailto:tbretz@astro.uni-wuerzburg.de> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2000-200 520 ! Copyright: MAGIC Software Development, 2000-2007 21 21 ! 22 22 ! … … 273 273 Int_t MFDataPhrase::ReadEnv(const TEnv &env, TString prefix, Bool_t print) 274 274 { 275 Int_t rc = MFilter::ReadEnv(env, prefix, print);276 if (rc ==kERROR)275 Int_t rc1 = MFilter::ReadEnv(env, prefix, print); 276 if (rc1==kERROR) 277 277 return kERROR; 278 278 … … 329 329 *fLog << endl; 330 330 } 331 332 rc1 = kTRUE; 331 333 } 332 334 else … … 340 342 } 341 343 342 if (fData->ReadEnv(env, prefix, print)==kERROR) 344 const Int_t rc2 = fData->ReadEnv(env, prefix, print); 345 if (rc2==kERROR) 343 346 return kERROR; 344 347 … … 351 354 SetInverted(kFALSE);*/ 352 355 353 return kTRUE;354 } 356 return rc1 || rc2; 357 }
Note:
See TracChangeset
for help on using the changeset viewer.