Changeset 6903
- Timestamp:
- 03/29/05 18:37:44 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6902 r6903 128 128 * mjobs/Makefile, mjobs/JobsLinkDef.h: 129 129 - removed MJExtractSignal 130 131 * mfbase/MF.cc: 132 - fixed a problem with double-inversion in ReadEnv 133 134 * mpointing/MSrcPosCalc.cc: 135 - removed an output line which showed only an empty container 130 136 131 137 -
trunk/MagicSoft/Mars/NEWS
r6892 r6903 4 4 5 5 - Fix bug on the arrival time reconstruction when using Digital 6 Filter (in some marginal cases times were reconstructed shifted by one7 or twoslices)6 Filter (in some marginal cases (10%) times were reconstructed shifted 7 by 0.2 slices) 8 8 9 9 - all executables now return 2 where in previous versions -1 has -
trunk/MagicSoft/Mars/mfbase/MF.cc
r6892 r6903 540 540 } 541 541 542 if (fF->ReadEnv(env, prefix, print)==kERROR) 543 return kERROR; 544 545 // This is a workaround, because MFilter::ReadEnv and fF->ReadEnv 546 // might check for "Inverted" in this case both gets inverted 547 // and double-inversion is no inversion 548 if (IsEnvDefined(env, prefix, "Inverted", print)) 549 if (GetEnvValue(env, prefix, "Inverted", print)==kTRUE) 550 fF->SetInverted(kFALSE); 551 542 552 return kTRUE; 543 553 } -
trunk/MagicSoft/Mars/mpointing/MSrcPosCalc.cc
r6874 r6903 197 197 198 198 *fLog << inf; 199 *fLog << "Pointing Position: " << GetRaDec(*fPointPos) << endl;200 *fLog << "Source 199 //*fLog << "Pointing Position: " << GetRaDec(*fPointPos) << endl; 200 *fLog << "Source Position: " << GetRaDec(*fSourcePos) << endl; 201 201 202 202 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.