Changeset 9515 for trunk/MagicSoft/Cosy/videodev/FilterLed.cc
- Timestamp:
- 10/21/09 09:52:52 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/videodev/FilterLed.cc
r9439 r9515 2 2 3 3 #include <memory.h> // memset 4 #include <math.h> 4 5 #include <iostream> // cout 6 7 #include <TMath.h> 5 8 6 9 #include "Led.h" … … 406 409 407 410 // 254 because b<=max and not b<max 408 const double sdev = TMath::Sqrt(sq-sum*sum);411 const double sdev = sqrt(sq-sum*sum); 409 412 const byte max = sum+fCut*sdev>254 ? 254 : (byte)(sum+fCut*sdev); 410 413
Note:
See TracChangeset
for help on using the changeset viewer.