Changeset 5883
- Timestamp:
- 01/18/05 17:32:52 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r5880 r5883 21 21 -*-*- END OF LINE -*-*- 22 22 23 2005/01/18 Thomas Bretz 24 25 * mbase/MMath.cc: 26 - added a check for s==0 in SignificanceLiMa, because otherwise the 27 result is NaN 28 29 * mfbase/MF.cc: 30 - removed an obsolete debugging output from the latest changes 31 32 * mhflux/MHAlpha.cc: 33 - reset fHTime, too 34 35 36 23 37 2005/01/18 Nicola Galante 24 38 … … 26 40 - added parentesis to ensure bitwise operators priority 27 41 with respect to logical operators. 42 28 43 29 44 … … 88 103 89 104 105 90 106 2005/01/17 Nadia Tonello and Markus Gaug 91 107 92 108 * mcalib/MCalibrationChargeCam.cc 93 109 - some fit improvements in the function GetAveragedConvFADC2PhotPerArea 110 94 111 95 112 -
trunk/MagicSoft/Mars/mbase/MMath.cc
r5836 r5883 70 70 // 71 71 // Returns -1 if sum<0 or alpha<0 or the argument of sqrt<0 72 // Returns 0 if s+b==0 72 // Returns 0 if s+b==0 or s==0 73 73 // 74 74 Double_t MMath::SignificanceLiMa(Double_t s, Double_t b, Double_t alpha) … … 76 76 const Double_t sum = s+b; 77 77 78 if (s um==0)78 if (s==0 || sum==0) 79 79 return 0; 80 80 -
trunk/MagicSoft/Mars/mfbase/MF.cc
r5875 r5883 398 398 TString MF::GetDataMember() const 399 399 { 400 *fLog << dbg << "MF::GetDataMember" << endl;401 400 return fF->GetDataMember(); 402 401 } -
trunk/MagicSoft/Mars/mhflux/MHAlpha.cc
r5832 r5883 221 221 fHEnergy.Reset(); 222 222 fHTheta.Reset(); 223 fHTime.Reset(); 223 224 224 225 if (fName!=(TString)"MHAlphaOff" && fOffData==NULL)
Note:
See TracChangeset
for help on using the changeset viewer.