Changeset 2363 for trunk/MagicSoft
- Timestamp:
- 09/26/03 14:09:17 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2359 r2363 1 1 -*-*- END OF LINE -*-*- 2 3 2003/09/26: Robert Wagner 4 * mfileio/MCT1ReadPreProc.cc 5 - provisionally pass complete event time to fTime container, 6 units are MJDs instead of seconds for the time being 7 8 2 9 3 10 2003/09/25: Abelardo Moralejo 4 11 * macros/MagicHillas.C, star.C 5 12 - Added cast: TArrayF w(15,(Float_t*)x) to get rid of warning. 13 14 6 15 7 16 2003/09/24: Abelardo Moralejo … … 14 23 - removed code containing TArrayF w(15,x) (which was commented) 15 24 since it made no sense for CT1. 25 26 16 27 17 28 2003/09/24: Wolfgang Wittek -
trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc
r2316 r2363 905 905 // int isecs_since_midday; // seconds passed since midday before sunset (JD of run start) 906 906 // int isecfrac_200ns; // fractional part of isecs_since_midday 907 fTime->SetTime(event.isecfrac_200ns, event.isecs_since_midday );907 fTime->SetTime(event.isecfrac_200ns, event.isecs_since_midday/86400 + (Int_t)fRawRunHeader->GetMJD()); 908 908 fTime->SetReadyToSave(); 909 909
Note:
See TracChangeset
for help on using the changeset viewer.