Changeset 3967 for trunk/MagicSoft/Mars
- Timestamp:
- 05/04/04 20:44:01 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3966 r3967 25 25 The default option is set to read .root files. 26 26 27 28 27 29 2004/05/04: Javier Rico 28 30 29 31 * mcalib/MCalibrate.cc 30 32 - when calibrating using kNONE, weight by the pixel area 31 33 34 35 32 36 2004/05/04: Thomas Bretz 33 37 … … 58 62 * mtools/MFFT.cc: 59 63 - added more documentation 64 65 * mbase/MTime.[h,cc]: 66 - renamed overloaded Set-function to SetMjd. There were some 67 trouble with the interpreter and the new naming is more 68 intuitive. 60 69 61 70 -
trunk/MagicSoft/Mars/mbase/MTime.cc
r3666 r3967 47 47 // 48 48 // WARNING: Be carefull changing this class. It is also used in the 49 // MAGIC drive software cosy !49 // MAGIC drive software cosy as VERY IMPORTANT stuff! 50 50 // 51 51 // Remarke: If you encounter strange behaviour, check the casting. … … 166 166 // in milliseconds) and a nanosecond part. 167 167 // 168 Bool_t MTime::Set (UInt_t mjd, ULong_t ms, UInt_t ns)168 Bool_t MTime::SetMjd(UInt_t mjd, ULong_t ms, UInt_t ns) 169 169 { 170 170 // [d] mjd (eg. 52320) -
trunk/MagicSoft/Mars/mbase/MTime.h
r3920 r3967 75 75 void Now(); 76 76 77 Bool_t Set(UInt_t mjd, ULong_t ms, UInt_t ns=0);78 77 Bool_t Set(UShort_t y, Byte_t m, Byte_t d, Byte_t h=13, Byte_t min=0, Byte_t s=0, UShort_t ms=0, UInt_t ns=0); 79 78 void Set(const struct timeval &tv); … … 83 82 void SetCT1Time(UInt_t mjd, UInt_t t1, UInt_t t0); 84 83 Bool_t UpdMagicTime(Byte_t h, Byte_t m, Byte_t s, UInt_t ns); 84 Bool_t SetMjd(UInt_t mjd, ULong_t ms, UInt_t ns=0); 85 85 void SetMjd(Double_t m); 86 86 Double_t GetMjd() const;
Note:
See TracChangeset
for help on using the changeset viewer.