Changeset 9227 for trunk/MagicSoft/Mars
- Timestamp:
- 01/17/09 14:54:31 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9225 r9227 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2009/01/17 Thomas Bretz 22 23 * mbase/MMath.[h,cc]: 24 - added a new function RndmExp which should be a tiny bit faster than 25 root's own implementation because it ises Rndm() instead of Uniform() 26 27 * mextralgo/ExtralgoIncl.h: 28 - added MArrayF 29 30 * mextralgo/MExtralgoSpline.[h,cc]: 31 - divided FindY into FindYup and FindYdn to avoid an obsolete if-clause 32 - added a new member function to return the integral function of the 33 spline. This is useful to init a new spline and use it for 34 producing the proper random distribution. 35 36 * mpedestal/MPedestalSubtractedEvt.[h,cc]: 37 - added Print() function 38 39 * mraw/MRawEvtData.[h,cc]: 40 - added a member function to Reset the arrays 41 - added member function to set the pixel indices 42 - Improved the new Set function 43 44 20 45 21 46 2009/01/16 Daniel Hoehne-Moench -
trunk/MagicSoft/Mars/mraw/MRawEvtData.cc
r9226 r9227 487 487 } 488 488 489 // -------------------------------------------------------------------------- 490 // 491 // Set indices according to the given array. The array must have the same 492 // size as fHiGainPixId 493 // 489 494 void MRawEvtData::SetIndices(const MArrayS &idx) 490 495 { … … 495 500 } 496 501 502 // -------------------------------------------------------------------------- 503 // 504 // Set indices according to the length of the array fHiGainPixId 505 // from 0 to n-1 506 // 497 507 void MRawEvtData::SetIndices() 498 508 {
Note:
See TracChangeset
for help on using the changeset viewer.